bigcache
bigcache copied to clipboard
Efficient cache for gigabytes of data written in Go.
The purpose is to support some atomic operations
**What is the issue you are having?** Reset shards no longer works **What is BigCache doing that it shouldn't?** Empty the shards. Using stats method i can see the how...
Although hash algorithm is not the Bottleneck of bigcache, the [smhasher](https://github.com/rurban/smhasher)(the project of hash function quality and speed tests) show that FVNa has poor quality while other hash func has...
Hello, I was wondering if bigcache could support a getMulti(keys []string) function or if there was a technical limitation preventing it. Thanks!
There is a possibility that currentTimestamp is smaller than oldestTimestamp, creating an overflow and causing normal data to be cleaned up
I want to calculate the 10 second cache hit rate, but func Stats() get hit rate is from when cache is init. can bigcache add func reset stats for example...
EntryStatus back to the caller "Expired" cannot be differentiated. Fixing this by default "_" to 0 and incremental RemoveReasons comment was missing for GetWithInfo api so updated that test: ran...
**What is the issue you are having?** shard `onEvict` get an empty oldestEntry.so panic and not unLock **What is BigCache doing that it shouldn't?** fix panic **Minimal, Complete, and Verifiable...