/drome

LRU, FIFO and LIFO caches.

Primary LanguageJavaApache License 2.0Apache-2.0

drome

LRU, FIFO and LIFO caches.

Cache<Integer, String> cache = CacheFactory.getCache(Cache.Algorithm.LRU);
        
cache.put(1, "Apple");
String first = cache.get(1);