Skip to content

Releases: viney-shih/go-cache

v1.1.5

Choose a tag to compare

@viney-shih viney-shih released this 20 Jan 10:48
49fc89b
  • 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

Choose a tag to compare

@viney-shih viney-shih released this 25 Jun 02:24
254f4db
  • 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)

Choose a tag to compare

@viney-shih viney-shih released this 18 Jun 03:29
6913893
  • hide details about events
  • enhance the test coverage rate

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

Choose a tag to compare

@viney-shih viney-shih released this 12 Jun 13:55
bbe6347

Description

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

v1.1.1

Choose a tag to compare

@viney-shih viney-shih released this 10 Jun 15:43
  • Add logo.png
  • Add doc link in README

v1.1.0

Choose a tag to compare

@viney-shih viney-shih released this 10 Jun 15:17
  • Add more unit tests to enhance coverage rate.
  • Integrate travis CI
  • fix README

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

Choose a tag to compare

@viney-shih viney-shih released this 27 May 15:41
453f7ed
  • 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, ...)