Releases: wonbyte/gust
Releases · wonbyte/gust
v1.0.2
v1.0.1
v1.0.0
- 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
, andClear
methods. - Efficient Fetching: Ensures that during concurrent requests within the grace period, only a single fetch operation is executed.