I am trying to implement a high performance thread-safe caching. Here is the code I have implemented. I don\'t want any on demand computing. Can I use cache.asMap() and retrieve
If you want high performance, why don't you instanciate the Cache statically instead of using a synchronized getInstance()?