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 need to handle tags=-type searches a bit differently, as it's currently too slow for larger databases.
My hypothesis is that the selection happens over the whole observable collection, and for each observable the tags graph is traversed once, and only the items that have the specified tag are kept.
A much better approach would be to start from the tag and simply return all observables that are associated with it (1 traversal instead of N)
The text was updated successfully, but these errors were encountered:
We need to handle
tags=
-type searches a bit differently, as it's currently too slow for larger databases.My hypothesis is that the selection happens over the whole observable collection, and for each observable the tags graph is traversed once, and only the items that have the specified tag are kept.
A much better approach would be to start from the tag and simply return all observables that are associated with it (1 traversal instead of N)
The text was updated successfully, but these errors were encountered: