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
We should be caching query results and/or resolving queries as much as possible from the app-cache.
This'll keep all things instant post pre-fetch. This is really only a problem for the browser where non-trivial queries against sqlite backed by indexeddb can take ~5ms rather than microseconds.
~5ms doesn't seem so bad but if the user has 4 complex queries to resolve before updating the UI it'll be above our ideal threshold of 16ms.
The text was updated successfully, but these errors were encountered:
We should be caching query results and/or resolving queries as much as possible from the app-cache.
This'll keep all things instant post pre-fetch. This is really only a problem for the browser where non-trivial queries against sqlite backed by indexeddb can take ~5ms rather than microseconds.
~5ms doesn't seem so bad but if the user has 4 complex queries to resolve before updating the UI it'll be above our ideal threshold of 16ms.
The text was updated successfully, but these errors were encountered: