Releases: NdoleStudio/lfu-cache
Releases · NdoleStudio/lfu-cache
v2.0.1
v2.0.0
Added Support For Generics
- Min go version is
1.18
due to generics support - The cache
key
andvalues
will be strongly typed e.glfucache.New[string, int](3)
for astring
key and aint
value.
Release 1.0.1
Change Log
- Fixed the
cache_test.go
to usestrconv.Itoa()
instead ofstring()
for converting an integer to a string.