Skip to content

Releases: viney-shih/go-cache

v1.1.5

20 Jan 10:48
49fc89b
Compare
Choose a tag to compare
  • go 1.18
  • support New Relic APM
  • add compress mechanism for Marshal and Unmarshal
  • fix trace length ~10x of the cache size

v1.1.4

25 Jun 02:24
254f4db
Compare
Choose a tag to compare
  • 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)

18 Jun 03:29
6913893
Compare
Choose a tag to compare
  • hide details about events
  • enhance the test coverage rate

v1.1.2: fix: add examples, fix README, fix typo (#7)

12 Jun 13:55
bbe6347
Compare
Choose a tag to compare

Description

  • Add example for PubSub model.
  • Fix the wording in README
  • Fix typo

v1.1.1

10 Jun 15:43
Compare
Choose a tag to compare
  • Add logo.png
  • Add doc link in README

v1.1.0

10 Jun 15:17
Compare
Choose a tag to compare
  • Add more unit tests to enhance coverage rate.
  • Integrate travis CI
  • fix README

v1.0.0: fix: evict keys remotely as well (#3)

27 May 15:41
453f7ed
Compare
Choose a tag to compare
  • 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, ...)