Little Tech Secrets 
Simple Tech Tips
Latest Content

Simple (LRU) Cache in Java - 372 days ago
Many a time, need for simple LRU cache arises. Instead of reinventing the wheel, Java provides an easy way to implement a LRU cache. Java collections framework has a LinkedHashMap which does almost what we need for LRU cache.LinkedHashMap maintains a... Topics: collections, Java, Java Snippets


