You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to avoid accidentally free'ing pooled memory, we lock/protect virtual dom objects. This comes at a cost though since we need to constant check lengths and use indexOf which isn't very fast on super large arrays. Since we're dealing with potentially thousands of objects, we need to figure out a more efficient way to handle object pooling and clean up.
The text was updated successfully, but these errors were encountered:
In order to avoid accidentally free'ing pooled memory, we lock/protect virtual dom objects. This comes at a cost though since we need to constant check lengths and use
indexOf
which isn't very fast on super large arrays. Since we're dealing with potentially thousands of objects, we need to figure out a more efficient way to handle object pooling and clean up.The text was updated successfully, but these errors were encountered: