voldemort.store.memory
Class CacheStorageConfiguration

java.lang.Object
  extended by voldemort.store.memory.CacheStorageConfiguration
All Implemented Interfaces:
StorageConfiguration

public class CacheStorageConfiguration
extends java.lang.Object
implements StorageConfiguration

Identical to the InMemoryStorageConfiguration except that it creates google collections ReferenceMap with Soft references on both keys and values. This behaves like a cache, discarding values when under memory pressure.


Field Summary
static java.lang.String TYPE_NAME
           
 
Constructor Summary
CacheStorageConfiguration()
           
CacheStorageConfiguration(VoldemortConfig config)
           
 
Method Summary
 void close()
          Close the storage configuration
 StorageEngine<ByteArray,byte[],byte[]> getStore(StoreDefinition storeDef, RoutingStrategy strategy)
          Get an initialized storage implementation
 java.lang.String getType()
          Get the type of stores returned by this configuration
 void removeStorageEngine(StorageEngine<ByteArray,byte[],byte[]> engine)
          Remove the storage engine from the underlying storage configuration
 void update(StoreDefinition storeDef)
          Update the storage configuration at runtime
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TYPE_NAME

public static final java.lang.String TYPE_NAME
See Also:
Constant Field Values
Constructor Detail

CacheStorageConfiguration

public CacheStorageConfiguration()

CacheStorageConfiguration

public CacheStorageConfiguration(VoldemortConfig config)
Method Detail

close

public void close()
Description copied from interface: StorageConfiguration
Close the storage configuration

Specified by:
close in interface StorageConfiguration

getStore

public StorageEngine<ByteArray,byte[],byte[]> getStore(StoreDefinition storeDef,
                                                       RoutingStrategy strategy)
Description copied from interface: StorageConfiguration
Get an initialized storage implementation

Specified by:
getStore in interface StorageConfiguration
Parameters:
storeDef - store definition
strategy - routing strategy used for the store
Returns:
The storage engine

getType

public java.lang.String getType()
Description copied from interface: StorageConfiguration
Get the type of stores returned by this configuration

Specified by:
getType in interface StorageConfiguration

update

public void update(StoreDefinition storeDef)
Description copied from interface: StorageConfiguration
Update the storage configuration at runtime

Specified by:
update in interface StorageConfiguration
Parameters:
storeDef - new store definition object

removeStorageEngine

public void removeStorageEngine(StorageEngine<ByteArray,byte[],byte[]> engine)
Description copied from interface: StorageConfiguration
Remove the storage engine from the underlying storage configuration

Specified by:
removeStorageEngine in interface StorageConfiguration
Parameters:
engine - Specifies the storage engine to be removed


Jay Kreps, Roshan Sumbaly, Alex Feinberg, Bhupesh Bansal, Lei Gao, Chinmay Soman, Vinoth Chandar, Zhongjie Wu