zipcache
zipcache copied to clipboard
Keep top k most frequent accessed chunks in a separate list
At the moment, each chunk is decompressed on the fly when performing lookup.
It could improve performance to keep the most recently accessed chunks uncompressed in a separate list, so that most of requests can be fulfilled without decompressing chunks.