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
IndexInventory was implemented before async/await functions on the Repo, and it should be revisited. For example querying the IndexInventory happens both on a get_by and an async_get_by. If there is no cached entry, then a wait must occur before the QueryPlan. This cannot be changed. However, if there is already a cached entry, then a wait happens to check the correctness of the cache entry against the active schema version. I think this wait can be optimistically deferred via the Future.
The text was updated successfully, but these errors were encountered:
IndexInventory was implemented before async/await functions on the Repo, and it should be revisited. For example querying the IndexInventory happens both on a get_by and an async_get_by. If there is no cached entry, then a wait must occur before the QueryPlan. This cannot be changed. However, if there is already a cached entry, then a wait happens to check the correctness of the cache entry against the active schema version. I think this wait can be optimistically deferred via the Future.
The text was updated successfully, but these errors were encountered: