Skip to content

Releases: wonbyte/gust

v1.0.2

10 Feb 03:07
9f09863
Compare
Choose a tag to compare

Bump release version to update go pkg cache

v1.0.1

09 Feb 18:47
9d6981b
Compare
Choose a tag to compare

Bump release version to update go pkg cache

v1.0.0

09 Feb 17:38
Compare
Choose a tag to compare
  • Thread-Safe & Generic: Cache a limited number of items with built-in concurrency support.
  • TTL with Grace Period: Items expire based on a user-defined TTL with an additional 20-second grace period, mitigating the thundering herd problem.
  • Automatic Stale Item Removal: Periodically cleans up expired entries to keep the cache lean.
  • Straightforward API: Manage the cache with Get, Set, Replace, Delete, and Clear methods.
  • Efficient Fetching: Ensures that during concurrent requests within the grace period, only a single fetch operation is executed.