Releases: jellydator/ttlcache
2.10.0 - memory leak fix
2.10.0 (December 2021)
#62 : @nikhilk1701 found a memory leak where removed items are not directly eligible for garbage collection. There are no API changes.
v2.9.0 - Great performance improvements
2.9.0 (October 2021)
#55,#56,#57 : @chenyahui was on fire and greatly improved the peformance of the library. He also got rid of the blocking call to expirationNotification, making the code run twice as fast in the benchmarks!
2.8.1 - Performance improvement
#53 Avoids recalculation of TTL value returned in API when TTL is extended.
2.8.0 - Add GetWithTTL
API Change
- The call
GetWithTTL(key string) (interface{}, time.Duration, error)
is added so that you can retrieve an item, and also know the remaining TTL. Thanks to @asgarciap for contributing.
"got panic"
#46 : got panic
A panic occured in a line that checks the maximum amount of items in the cache. While not definite root cause has been found, there is indeed the possibility of crashing an empty cache if the cache limit is set to 'zero' which codes for infinite. This would lead to removal of the first item in the cache which would panic on an empty cache.
Fixed this by applying the global cache lock to all configuration options as well.
Improved concurrency in loader function.
#44 : There are no API changes, but a contribution was made to use https://pkg.go.dev/golang.org/x/sync/singleflight as a way to provide everybody waiting for a key with that result when it is fetched. Thanks go out to @jspri
This removes some complexity from the code and will make sure that all callers will get a return value even if there's high concurrency and low TTL (as proven by the test that was added).
2.5.0
Add manipulation calls
2.4.0 - Add some item manipulation
#42 : Add option to get list of keys
#40: Allow 'Touch' on items without other operation
// Touch resets the TTL of the key when it exists, returns ErrNotFound if the key is not present.
func (cache *Cache) Touch(key string) error
// GetKeys returns all keys of items in the cache. Returns nil when the cache has been closed.
func (cache *Cache) GetKeys() []string
2.3.0 - Improved expiry information
2.3.0 (February 2021)
API changes:
- #38: Added func (cache *Cache) SetExpirationReasonCallback(callback ExpireReasonCallback) This wil function will replace SetExpirationCallback(..) in the next major version.