Uses of Interface
org.infinispan.loaders.CacheStore

Packages that use CacheStore
org.infinispan.configuration.cache Classes related to eviction. 
org.infinispan.jcache   
org.infinispan.loaders This package contains loaders and stores, which are used for overflow or persistence. 
org.infinispan.loaders.bdbje This package contains a CacheStore implementation based on Oracle's BDBJE storage engine. 
org.infinispan.loaders.bucket Abstract classes that use hashed buckets to store entries. 
org.infinispan.loaders.cassandra This package contains a CacheStore implementation based on persisting to Apache Cassandra 
org.infinispan.loaders.cloud This package contains a CacheStore implementation based on JClouds, which in turn is an abstraction layer to store data on cloud infrastructure providers such as Amazon's S3, RackspaceCloud's CloudFiles, Microsoft's Windows Azure Blob Storage API, and others. 
org.infinispan.loaders.decorators This package contains loaders and stores, which are used for overflow or persistence. 
org.infinispan.loaders.file Simple filesystem-based CacheStore implementation. 
org.infinispan.loaders.hbase This package contains a CacheStore implementation based on persisting to HBase. 
org.infinispan.loaders.jdbc.binary This JDBC CacheStore implementation is optimized for storing binary (non-String) keys in the cache. 
org.infinispan.loaders.jdbc.mixed This is a delegating CacheStore implementation that delegates either to a binary or String based JDBC cache store depending on the key used. 
org.infinispan.loaders.jdbc.stringbased This JDBC CacheStore implementation is optimized for storing String keys in the cache. 
org.infinispan.loaders.jdbm This package contains a CacheStore implementation based on persisting to JDBM. 
org.infinispan.loaders.jpa   
org.infinispan.loaders.leveldb   
org.infinispan.loaders.remote   
org.infinispan.nearcache.jms   
 

Uses of CacheStore in org.infinispan.configuration.cache
 

Methods in org.infinispan.configuration.cache with parameters of type CacheStore
 LegacyStoreConfigurationBuilder LegacyStoreConfigurationBuilder.cacheStore(CacheStore cacheStore)
          NOTE: Currently Infinispan will not use the object instance, but instead instantiate a new instance of the class.
 LoaderConfigurationBuilder LoaderConfigurationBuilder.cacheStore(CacheStore cacheStore)
          NOTE: Currently Infinispan will not use the object instance, but instead instantiate a new instance of the class.
 

Uses of CacheStore in org.infinispan.jcache
 

Classes in org.infinispan.jcache that implement CacheStore
 class JCacheLoaderAdapter<K,V>
           
 class JCacheWriterAdapter<K,V>
           
 

Uses of CacheStore in org.infinispan.loaders
 

Classes in org.infinispan.loaders that implement CacheStore
 class AbstractCacheStore
          An abstract CacheStore that holds common implementations for some methods
 class LockSupportCacheStore<L>
          This class extends AbstractCacheStore adding lock support for consistently accessing stored data.
 

Methods in org.infinispan.loaders that return CacheStore
 CacheStore CacheLoaderManagerImpl.getCacheStore()
           
 CacheStore CacheLoaderManager.getCacheStore()
           
 

Methods in org.infinispan.loaders with parameters of type CacheStore
protected  AsyncStore CacheLoaderManagerImpl.createAsyncStore(CacheStore tmpStore, CacheStoreConfig cfg2)
           
 

Uses of CacheStore in org.infinispan.loaders.bdbje
 

Classes in org.infinispan.loaders.bdbje that implement CacheStore
 class BdbjeCacheStore
          An Oracle SleepyCat JE implementation of a CacheStore.
 

Constructors in org.infinispan.loaders.bdbje with parameters of type CacheStore
ModificationsTransactionWorker(CacheStore store, List<? extends Modification> mods)
          Associates Modifications that will be applied to the supplied CacheStore
 

Uses of CacheStore in org.infinispan.loaders.bucket
 

Classes in org.infinispan.loaders.bucket that implement CacheStore
 class BucketBasedCacheStore
          Base class for CacheStore implementations that combine entries into buckets when storing data.
 

Uses of CacheStore in org.infinispan.loaders.cassandra
 

Classes in org.infinispan.loaders.cassandra that implement CacheStore
 class CassandraCacheStore
          A persistent CacheLoader based on Apache Cassandra project.
 

Uses of CacheStore in org.infinispan.loaders.cloud
 

Classes in org.infinispan.loaders.cloud that implement CacheStore
 class CloudCacheStore
          The CloudCacheStore implementation that utilizes JClouds to communicate with cloud storage providers such as Amazon's S3, Rackspace's Cloudfiles, or any other such provider supported by JClouds.
 

Uses of CacheStore in org.infinispan.loaders.decorators
 

Classes in org.infinispan.loaders.decorators that implement CacheStore
 class AbstractDelegatingStore
          Simple delegate that delegates all calls.
 class AsyncStore
          The AsyncStore is a delegating CacheStore that buffers changes and writes them asynchronously to the underlying CacheStore.
 class ChainingCacheStore
          A chaining cache loader that allows us to configure > 1 cache loader.
 class ReadOnlyStore
          A decorator that makes the underlying store a CacheLoader, i.e., suppressing all write methods.
 class SingletonStore
          SingletonStore is a delegating cache store used for situations when only one instance should interact with the underlying store.
 

Methods in org.infinispan.loaders.decorators that return CacheStore
 CacheStore AbstractDelegatingStore.getDelegate()
           
 

Methods in org.infinispan.loaders.decorators that return types with arguments of type CacheStore
 LinkedHashMap<CacheStore,CacheStoreConfiguration> ChainingCacheStore.getStores()
           
 

Methods in org.infinispan.loaders.decorators with parameters of type CacheStore
 void AbstractDelegatingStore.setDelegate(CacheStore delegate)
           
 

Constructors in org.infinispan.loaders.decorators with parameters of type CacheStore
AbstractDelegatingStore(CacheStore delegate)
           
AsyncStore(CacheStore delegate, AsyncStoreConfig asyncStoreConfig)
           
ReadOnlyStore(CacheStore delegate)
           
SingletonStore(CacheStore delegate, Cache<Object,Object> cache, SingletonStoreConfig config)
           
 

Uses of CacheStore in org.infinispan.loaders.file
 

Classes in org.infinispan.loaders.file that implement CacheStore
 class FileCacheStore
          A filesystem-based implementation of a BucketBasedCacheStore.
 

Uses of CacheStore in org.infinispan.loaders.hbase
 

Classes in org.infinispan.loaders.hbase that implement CacheStore
 class HBaseCacheStore
          Cache store using HBase as the implementation.
 

Uses of CacheStore in org.infinispan.loaders.jdbc.binary
 

Classes in org.infinispan.loaders.jdbc.binary that implement CacheStore
 class JdbcBinaryCacheStore
          BucketBasedCacheStore implementation that will store all the buckets as rows in database, each row corresponding to a bucket.
 

Uses of CacheStore in org.infinispan.loaders.jdbc.mixed
 

Classes in org.infinispan.loaders.jdbc.mixed that implement CacheStore
 class JdbcMixedCacheStore
          Cache store that combines functionality of JdbcBinaryCacheStore and JdbcStringBasedCacheStore.
 

Uses of CacheStore in org.infinispan.loaders.jdbc.stringbased
 

Classes in org.infinispan.loaders.jdbc.stringbased that implement CacheStore
 class JdbcStringBasedCacheStore
          CacheStore implementation that stores the entries in a database.
 

Uses of CacheStore in org.infinispan.loaders.jdbm
 

Classes in org.infinispan.loaders.jdbm that implement CacheStore
 class JdbmCacheStore
          A persistent CacheLoader based on the JDBM project.
 

Uses of CacheStore in org.infinispan.loaders.jpa
 

Classes in org.infinispan.loaders.jpa that implement CacheStore
 class JpaCacheStore
           
 

Uses of CacheStore in org.infinispan.loaders.leveldb
 

Classes in org.infinispan.loaders.leveldb that implement CacheStore
 class LevelDBCacheStore
           
 

Uses of CacheStore in org.infinispan.loaders.remote
 

Classes in org.infinispan.loaders.remote that implement CacheStore
 class RemoteCacheStore
          Cache store that delegates the call to a infinispan cluster.
 

Uses of CacheStore in org.infinispan.nearcache.jms
 

Classes in org.infinispan.nearcache.jms that implement CacheStore
 class RemoteEventCacheStore
          A remote cache store that registers itself to listen for remote cache events
 


-->

Copyright © 2013 JBoss, a division of Red Hat. All Rights Reserved.