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
First of all, thank you very much for both Vue 2 and Vue 3 integrations!
The current approach with Tracker.autorun(() => { ... cursor.fetch() ... }) causes unnecessary invalidation of all objects in the array, even if only few of them were changed. Using cursor.observe() instead allows for precise invalidation. It also prevents unnecessary calls of transform function if it is passed to a cursor.
This approach is successfully used by Svelte and Blaze integrations.
The text was updated successfully, but these errors were encountered:
First of all, thank you very much for both Vue 2 and Vue 3 integrations!
The current approach with
Tracker.autorun(() => { ... cursor.fetch() ... })
causes unnecessary invalidation of all objects in the array, even if only few of them were changed. Usingcursor.observe()
instead allows for precise invalidation. It also prevents unnecessary calls oftransform
function if it is passed to a cursor.This approach is successfully used by Svelte and Blaze integrations.
The text was updated successfully, but these errors were encountered: