Uses of Class
org.infinispan.persistence.sifs.configuration.SoftIndexFileStoreConfigurationBuilder
Package
Description
Cache
configurationConfiguration for
.
invalid reference
org.infinispan.persistence.sifs.SoftIndexFileStore
-
Uses of SoftIndexFileStoreConfigurationBuilder in org.infinispan.configuration.cache
Modifier and TypeMethodDescriptionPersistenceConfigurationBuilder.addSoftIndexFileStore()
Adds a soft index file cache store. -
Uses of SoftIndexFileStoreConfigurationBuilder in org.infinispan.configuration.parsing
-
Uses of SoftIndexFileStoreConfigurationBuilder in org.infinispan.persistence.sifs.configuration
Modifier and TypeMethodDescriptionSoftIndexFileStoreConfigurationBuilder.compactionThreshold
(double compactionThreshold) If the amount of unused space in some data file gets above this threshold, the file is compacted - entries from that file are copied to a new file and the old file is deleted.SoftIndexFileStoreConfigurationBuilder.dataLocation
(String dataLocation) The path where the Soft-Index store will keep its data files.SoftIndexFileStoreConfigurationBuilder.indexLocation
(String indexLocation) The path where the Soft-Index store will keep its index files.SoftIndexFileStoreConfigurationBuilder.indexQueueLength
(int indexQueueLength) Sets the maximum number of entry writes that are waiting to be written to the index, per index segment.SoftIndexFileStoreConfigurationBuilder.indexSegments
(int indexSegments) Deprecated.SoftIndexFileStoreConfigurationBuilder.maxFileSize
(int maxFileSize) Sets the maximum size of single data file with entries, in bytes.SoftIndexFileStoreConfigurationBuilder.maxNodeSize
(int maxNodeSize) Max size of node (continuous block on filesystem used in index implementation), in bytes.SoftIndexFileStoreConfigurationBuilder.minNodeSize
(int minNodeSize) If the size of the node (continuous block on filesystem used in index implementation) drops below this threshold, the node will try to balance its size with some neighbour node, possibly causing join of multiple nodes.SoftIndexFileStoreConfigurationBuilder.openFilesLimit
(int openFilesLimit) Sets the maximum number of open files.SoftIndexFileStoreConfigurationBuilder.self()
SoftIndexFileStoreConfigurationBuilder.syncWrites
(boolean syncWrites) Sets whether writes shoud wait to be fsynced to disk.