ehcache

Uses of Interface
net.sf.ehcache.store.Store

Packages that use Store
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.store Store package. 
net.sf.ehcache.store.compound This package contains the main classes and interfaces for the new fully coherent combination disk and memory store for unclustered Ehcache. 
net.sf.ehcache.store.compound.impl This package contains the various element proxy factory implementations. 
net.sf.ehcache.terracotta This package contains the Terracotta integration functionalities. 
net.sf.ehcache.transaction This package contains classes for controlling cache operations (for transactional use) 
net.sf.ehcache.transaction.xa This package contains the functionality to provide XA support to a transactional Cache. 
 

Uses of Store in net.sf.ehcache
 

Methods in net.sf.ehcache that return Store
 Store CacheManager.createTerracottaStore(Ehcache cache)
          Create/access the appropriate terracotta clustered store for the given cache
 

Uses of Store in net.sf.ehcache.store
 

Subinterfaces of Store in net.sf.ehcache.store
 interface TerracottaStore
          Use for internal purpose only.
 

Classes in net.sf.ehcache.store that implement Store
 class AbstractStore
           
 class DiskStore
          A disk store implementation.
 class LegacyStoreWrapper
          A wrapper to convert a legacy pair of stores into a new style compound store.
 class LruMemoryStore
          An implementation of a LruMemoryStore.
 class MemoryStore
          A Store implementation suitable for fast, concurrent in memory stores.
 class XATransactionalStore
          A transaction aware store that wraps the actual Store.
 

Fields in net.sf.ehcache.store declared as Store
protected  Store MemoryStore.diskStore
          The DiskStore associated with this MemoryStore.
protected  Store LruMemoryStore.diskStore
          The DiskStore associated with this MemoryStore.
 

Methods in net.sf.ehcache.store that return Store
 Store LegacyStoreWrapper.getDiskStore()
          Returns the underlying disk store for this legacy wrapper.
 Store LegacyStoreWrapper.getMemoryStore()
          Returns the underlying memory store for this legacy wrapper.
 

Methods in net.sf.ehcache.store with parameters of type Store
static MemoryStore MemoryStore.create(Ehcache cache, Store diskStore)
          A factory method to create a MemoryStore.
 

Constructors in net.sf.ehcache.store with parameters of type Store
LegacyStoreWrapper(Store memory, Store disk, RegisteredEventListeners eventListeners, CacheConfiguration config)
          Create a correctly locked store wrapper around the supplied in-memory and on disk stores.
LruMemoryStore(Ehcache cache, Store diskStore)
          Constructor for the LruMemoryStore object The backing LinkedHashMap is created with LRU by access order.
MemoryStore(Ehcache cache, Store diskStore)
          Constructs things that all MemoryStores have in common.
 

Uses of Store in net.sf.ehcache.store.compound
 

Classes in net.sf.ehcache.store.compound that implement Store
 class CompoundStore
          The store used by default in Ehcache version 2.
 

Uses of Store in net.sf.ehcache.store.compound.impl
 

Classes in net.sf.ehcache.store.compound.impl that implement Store
 class DiskPersistentStore
          Implements a persistent-to-disk store.
 class MemoryOnlyStore
          Implements a memory only store.
 class OverflowToDiskStore
          Implements an overflow-to-disk store.
 

Uses of Store in net.sf.ehcache.terracotta
 

Methods in net.sf.ehcache.terracotta that return Store
 Store ClusteredInstanceFactory.createStore(Ehcache cache)
          Create a Store instance for the given cache
 

Methods in net.sf.ehcache.terracotta with parameters of type Store
 EhcacheXAStore ClusteredInstanceFactory.createXAStore(Ehcache cache, Store store, boolean bypassValidation)
           
 

Uses of Store in net.sf.ehcache.transaction
 

Methods in net.sf.ehcache.transaction with parameters of type Store
 boolean Command.execute(Store store)
          Executes the command on some store
 boolean StorePutIfAbsentCommand.execute(Store store)
          Executes the command on some store
 boolean StoreRemoveAllCommand.execute(Store store)
          Executes the command on some store
 boolean StorePutCommand.execute(Store store)
          Executes the command on some store
 boolean StoreRemoveCommand.execute(Store store)
          Executes the command on some store
 boolean StoreReplaceElementCommand.execute(Store store)
          Executes the command on some store
 boolean StoreRemoveElementCommand.execute(Store store)
          Executes the command on some store
 boolean StoreReplaceCommand.execute(Store store)
          Executes the command on some store
 boolean StoreExpireAllElementsCommand.execute(Store store)
          Executes the command on some store
 

Uses of Store in net.sf.ehcache.transaction.xa
 

Fields in net.sf.ehcache.transaction.xa declared as Store
protected  Store EhcacheXAStoreImpl.oldVersionStore
          protected for testing
protected  Store EhcacheXAStoreImpl.underlyingStore
          protected for testing
 

Methods in net.sf.ehcache.transaction.xa that return Store
 Store EhcacheXAStore.getOldVersionStore()
          Getter to the guarding read-only oldVersionStore
 Store EhcacheXAStoreImpl.getOldVersionStore()
          Getter to the guarding read-only oldVersionStore
 Store EhcacheXAStore.getUnderlyingStore()
          Getter to the underlying store
 Store EhcacheXAStoreImpl.getUnderlyingStore()
          Getter to the underlying store
 

Methods in net.sf.ehcache.transaction.xa with parameters of type Store
 boolean VersionAwareWrapper.execute(Store store)
          Executes the command on some store
 

Constructors in net.sf.ehcache.transaction.xa with parameters of type Store
EhcacheXAStoreImpl(Store underlyingStore, Store oldVersionStore, boolean bypassValidation)
          Constructor
 


ehcache

true