com.whirlycott.cache.impl |
Concrete implementations of the ManagedCache interface go here.
|
Java Source File Name | Type | Comment |
AbstractMapBackedCache.java | Class | This is an abstract class for help in developing a cache backend using an implementation of java.util.Map. |
ConcurrentHashMapImpl.java | Class | This is a ManagedCache implementation based on the
ConcurrentHashMap Java 1.5. |
FastHashMapImpl.java | Class | This is a generic object cache using the Apache Jakarta Commons FastHashMap
implementation. |
SynchronizedHashMapImpl.java | Class | This is a java.util.HashMap-backed (using synchronization) implementation
of a ManagedCache.
There's absolutely no way that you would want to use this in real life. |