Releases: viney-shih/go-cache
Releases · viney-shih/go-cache
v1.1.5
v1.1.4
- Support customized
package key
which is the prefix of the cache key. You could set it empty as well. - Add
FOSSA
badge for license scan - Add
sourcegraph
badge - Renaming
factoryOptions
v1.1.3: fix: enhance test coverage (#9)
- hide details about events
- enhance the test coverage rate
v1.1.2: fix: add examples, fix README, fix typo (#7)
Description
- Add example for
PubSub
model. - Fix the wording in README
- Fix typo
v1.1.1
- Add logo.png
- Add doc link in README
v1.1.0
- Add more unit tests to enhance coverage rate.
- Integrate travis CI
- fix README
v1.0.0: fix: evict keys remotely as well (#3)
- Easy to use : provide a friendly interface to deal with both caching mechanism by simple configuration. Limit the resource on single instance (pod) as well.
- Maintain consistency : evict keys between distributed systems by
Pub-Sub
pattern. - Data compression : provide customized marshal and unmarshal functions.
- Fix concurrency issue : prevent data racing happened on single instance (pod).
- Metric : provide callback functions to measure the performance. (i.e. hit rate, private cache usage, ...)