Uses of Interface
org.infinispan.persistence.spi.AdvancedCacheLoader
-
Packages that use AdvancedCacheLoader Package Description org.infinispan.persistence Persistence API.org.infinispan.persistence.async org.infinispan.persistence.file Simple filesystem-basedCacheWriterimplementation.org.infinispan.persistence.jdbc.stringbased JDBC CacheStore implementation which maps keys to strings.org.infinispan.persistence.jpa JPA-basedAdvancedLoadWriteStore.org.infinispan.persistence.remote Hot Rod-basedAdvancedLoadWriteStore.org.infinispan.persistence.rest RESTfulAdvancedLoadWriteStore.org.infinispan.persistence.rocksdb RocksDB-basedAdvancedLoadWriteStore.org.infinispan.persistence.sifs Soft IndexAdvancedLoadWriteStore.org.infinispan.persistence.spi The Persistence SPI.org.infinispan.persistence.support org.infinispan.persistence.util -
-
Uses of AdvancedCacheLoader in org.infinispan.persistence
Methods in org.infinispan.persistence with parameters of type AdvancedCacheLoader Modifier and Type Method Description static <K,V>
intPersistenceUtil. count(AdvancedCacheLoader<K,V> acl, java.util.function.Predicate<? super K> filter)static <K,V>
intPersistenceUtil. count(AdvancedCacheLoader<K,V> acl, KeyFilter<? super K> filter)Deprecated.Please usePersistenceUtil.count(AdvancedCacheLoader, Predicate)insteadstatic <K,V>
java.util.Set<InternalCacheEntry<K,V>>PersistenceUtil. toEntrySet(AdvancedCacheLoader<K,V> acl, java.util.function.Predicate<? super K> filter, org.infinispan.container.impl.InternalEntryFactory ief)static <K,V>
java.util.Set<InternalCacheEntry>PersistenceUtil. toEntrySet(AdvancedCacheLoader<K,V> acl, KeyFilter<? super K> filter, org.infinispan.container.impl.InternalEntryFactory ief)Deprecated.static <K,V>
java.util.Set<K>PersistenceUtil. toKeySet(AdvancedCacheLoader<K,V> acl, java.util.function.Predicate<? super K> filter)static <K,V>
java.util.Set<K>PersistenceUtil. toKeySet(AdvancedCacheLoader<K,V> acl, KeyFilter<? super K> filter)Deprecated.since 9.3 Please usePersistenceUtil.toKeySet(AdvancedCacheLoader, Predicate)instead -
Uses of AdvancedCacheLoader in org.infinispan.persistence.async
Classes in org.infinispan.persistence.async that implement AdvancedCacheLoader Modifier and Type Class Description classAdvancedAsyncCacheLoader<K,V> -
Uses of AdvancedCacheLoader in org.infinispan.persistence.file
Classes in org.infinispan.persistence.file that implement AdvancedCacheLoader Modifier and Type Class Description classSingleFileStore<K,V>A filesystem-based implementation of aAdvancedLoadWriteStore. -
Uses of AdvancedCacheLoader in org.infinispan.persistence.jdbc.stringbased
Classes in org.infinispan.persistence.jdbc.stringbased that implement AdvancedCacheLoader Modifier and Type Class Description classJdbcStringBasedStore<K,V>AdvancedCacheLoaderimplementation that stores the entries in a database. -
Uses of AdvancedCacheLoader in org.infinispan.persistence.jpa
Classes in org.infinispan.persistence.jpa that implement AdvancedCacheLoader Modifier and Type Class Description classJpaStore<K,V>NOTE: This store can return expired keys or entries on any given operation ifJpaStoreConfiguration.storeMetadata()was set to false. -
Uses of AdvancedCacheLoader in org.infinispan.persistence.remote
Classes in org.infinispan.persistence.remote that implement AdvancedCacheLoader Modifier and Type Class Description classRemoteStore<K,V>Cache store that delegates the call to a infinispan cluster. -
Uses of AdvancedCacheLoader in org.infinispan.persistence.rest
Classes in org.infinispan.persistence.rest that implement AdvancedCacheLoader Modifier and Type Class Description classRestStore<K,V>Deprecated.This cache store will be changed to only implementCacheLoader -
Uses of AdvancedCacheLoader in org.infinispan.persistence.rocksdb
Classes in org.infinispan.persistence.rocksdb that implement AdvancedCacheLoader Modifier and Type Class Description classRocksDBStore<K,V> -
Uses of AdvancedCacheLoader in org.infinispan.persistence.sifs
Classes in org.infinispan.persistence.sifs that implement AdvancedCacheLoader Modifier and Type Class Description classSoftIndexFileStoreLocal file-based cache store, optimized for write-through use with strong consistency guarantees (ability to flush disk operations before returning from the store call). -
Uses of AdvancedCacheLoader in org.infinispan.persistence.spi
Subinterfaces of AdvancedCacheLoader in org.infinispan.persistence.spi Modifier and Type Interface Description interfaceAdvancedLoadWriteStore<K,V>Advanced interface for interacting with an external store in a read-write mode.interfaceSegmentedAdvancedLoadWriteStore<K,V>An interface implementing bothAdvancedCacheWriterandAdvancedCacheLoaderas well as overrides of those methods that can be optimized when a segment is already known for the key or a subset of segments are to be used instead of the entire store. -
Uses of AdvancedCacheLoader in org.infinispan.persistence.support
Classes in org.infinispan.persistence.support that implement AdvancedCacheLoader Modifier and Type Class Description classAbstractSegmentedAdvancedLoadWriteStore<K,V>Abstract segment loader writer that implements all the single key non segmented methods by invoking the segmented equivalent by passing in the segment returned from invokingAbstractSegmentedAdvancedLoadWriteStore.getKeyMapper().classComposedSegmentedLoadWriteStore<K,V,T extends AbstractSegmentedStoreConfiguration>Segmented store that creates multiple inner stores for each segment. -
Uses of AdvancedCacheLoader in org.infinispan.persistence.util
Constructors in org.infinispan.persistence.util with parameters of type AdvancedCacheLoader Constructor Description PersistenceManagerCloseableSupplier(java.util.concurrent.Executor executor, AdvancedCacheLoader<K,V> loader, java.util.function.Predicate<? super K> filter, boolean fetchValue, boolean fetchMetadata, long timeout, java.util.concurrent.TimeUnit unit, int maxQueue)Deprecated.
-