Skip to content

0.2.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@jtomasevic jtomasevic released this 20 Aug 22:39
· 2 commits to main since this release
ebec16b

Add support for LRUCache.

LruCache Least Recently Used (LRU) is a common caching strategy.
It defines the policy to evict elements from the cache to make room for new elements when the cache is full, meaning it discards the least recently used items first.