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
This task is about figuring out how to intelligently use disk and memory storage available in order to cache loaded chunks. The scope of this is quite large, but one way of approaching things could be:
Implement a very basic caching layer in the form of a CachingBackend which caches and forward calls to an actual Backend implementation. This is mostly plumbing in perparation for part (2) below.
Add metrics which allow evaluation of cache hit rates and expose the backend request metrics.
Implement caching strategies in CachingBackend which use disk and/or memory. Use the load generation binary (see other task) to validate that the strategies work.
The text was updated successfully, but these errors were encountered:
This task is about figuring out how to intelligently use disk and memory storage available in order to cache loaded chunks. The scope of this is quite large, but one way of approaching things could be:
CachingBackend
which caches and forward calls to an actualBackend
implementation. This is mostly plumbing in perparation for part (2) below.CachingBackend
which use disk and/or memory. Use the load generation binary (see other task) to validate that the strategies work.The text was updated successfully, but these errors were encountered: