The type of the key
The type of the value
A simple LRU cache implementation that uses a doubly linked list to track the order of items in an hash map.
When instatiating the cache, you can optionally specify the type of the key and value, as well as the maximum size of the cache. If no maximum size is specified, the cache will default to a size of 100.
Optional
config: LRUCacheOptionsThe configuration options for the cache
Adds a new item to the cache.
If the key already exists, it updates the value and marks the item as the most recently used. If inserting the new item would exceed the max size, the oldest item is removed from the cache.
Returns true
if the key exists in the cache, false
otherwise.
The key to check for in the cache
Removes an item from the cache, while doing so it also reconciles the linked list.
The key to remove from the cache
Returns the current size of the cache.
A simple LRU cache implementation that uses a doubly linked list to track the order of items in an hash map.
Illustration of the design:
Items are added to the cache using the
add()
method. When an item is added, it's marked as the most recently used item. If the cache is full, the oldest item is removed from the cache.Each item also tracks the item that was added before it, and the item that was added after it. This allows us to quickly remove the oldest item from the cache without having to iterate through the entire cache.
Note: This implementation is loosely based on the implementation found in the lru_map package which is licensed under the MIT license and recommends users to copy the code into their own projects.