| com.whirlycott.cache.ManagedCache
All known Subclasses: com.whirlycott.cache.test.EhcacheImpl, com.whirlycott.cache.impl.FastHashMapImpl,
ManagedCache | public interface ManagedCache extends Map<K, V>(Code) | | This is the interface that all backend caching systems must implement.
author: Phil Jacob |
Method Summary | |
public void | setMostlyRead(boolean _mostlyRead) For ManagedCache implementations that can perform optimizations for mostly-read environments. | public void | store(K k, V v) Store an Object in the cache. |
setMostlyRead | public void setMostlyRead(boolean _mostlyRead)(Code) | | For ManagedCache implementations that can perform optimizations for mostly-read environments.
Parameters: _mostlyRead - Whether most operations will be reads. |
store | public void store(K k, V v)(Code) | | Store an Object in the cache.
Parameters: k - key with which the specified value is to be associated. Parameters: v - value to be associated with the specified key. |
|
|