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
{{ message }}
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
We're currently calling inflate/deflate synchronously in the SQLiteCache. Instead, we should reserve this cache for SQLite operations exclusively and do other time-consuming tasks in a separate thread.
Once this is asynchronous, we can no longer guarantee an order of get/put operations, since compress tasks might run in parallel and can take more or less time compared to other cache tasks.
The text was updated successfully, but these errors were encountered:
We're currently calling
inflate
/deflate
synchronously in the SQLiteCache. Instead, we should reserve this cache for SQLite operations exclusively and do other time-consuming tasks in a separate thread.Once this is asynchronous, we can no longer guarantee an order of
get
/put
operations, since compress tasks might run in parallel and can take more or less time compared to other cache tasks.The text was updated successfully, but these errors were encountered: