LRU (Least Recently Used) Map implementation
will remove the oldest item when reach the size limit
maximum cache item number, default is 1024
Returns an iterable of entries in the map.
Returns an iterable of key, value pairs for every entry in the map.
Returns an iterable of keys in the map
Returns an iterable of values in the map
LRU (Least Recently Used) Map implementation