Releases: viney-shih/go-cache
Releases · viney-shih/go-cache
Release list
v1.1.5
v1.1.4
- Support customized
package keywhich is the prefix of the cache key. You could set it empty as well. - Add
FOSSAbadge for license scan - Add
sourcegraphbadge - 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
PubSubmodel. - Fix the wording in README
- Fix typo
v1.1.1
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-Subpattern. - 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, ...)