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
The current chunk cache stores the fetched blobs in cache. These chunks are typically compressed. Whenever we have a cache hit, we have to pay for decompression every time.
One way we can make playback mode faster is to store chunks decompressed.
Accept a cost of memory consumption, for the tradeoff of faster cache hits at run time.
Solution
We use a Store class that inherits from Zarrita's Store.
We preliminarily think this might require forking Zarrita to add the hooks or expose the internal modules we need.
Measure performance before and after.
The text was updated successfully, but these errors were encountered:
Use Case
The current chunk cache stores the fetched blobs in cache. These chunks are typically compressed. Whenever we have a cache hit, we have to pay for decompression every time.
One way we can make playback mode faster is to store chunks decompressed.
Accept a cost of memory consumption, for the tradeoff of faster cache hits at run time.
Solution
We use a Store class that inherits from Zarrita's Store.
We preliminarily think this might require forking Zarrita to add the hooks or expose the internal modules we need.
Measure performance before and after.
The text was updated successfully, but these errors were encountered: