S
SolidJS3mo ago
gsoutz

How do I debug updates

I thought My app is working fine except I noticed a lag, which performance profile shows lots of unnecessary updates happening, how do I make sure I can detect all of these and they don't happen. go undetected.
1 Reply
gsoutz
gsoutz3mo ago
Now I recognize the source of the problem is some inefficient calculation in a reactive network, but the reactivity comes from many different signals all together combined together, so one fast changing signal causes to recompute the slow calculation that comes from slow changing signal. Ok, solved by throwing more createMemo onto it, there was some x = () => { } calculations going on.