A Map implementation with Least Recently Used (LRU) eviction policy.
LRUMap maintains key-value pairs with automatic eviction of least recently
accessed items when capacity limits are reached. Provides configurable
eviction and refresh strategies, event callbacks, and access statistics.
A Map implementation with Least Recently Used (LRU) eviction policy.
LRUMap maintains key-value pairs with automatic eviction of least recently accessed items when capacity limits are reached. Provides configurable eviction and refresh strategies, event callbacks, and access statistics.
Example