Package org.apache.jena.dboe.index
Interface IndexParams
-
- All Superinterfaces:
BlockParams
public interface IndexParams extends BlockParams
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.IntegergetBlockReadCacheSize()Block read cache size (mmap'ed files do not have a block cache)java.lang.IntegergetBlockSize()Block size - this is only configurable when the on-disk are created.java.lang.IntegergetBlockWriteCacheSize()Block write cache size (mmap'ed files do not have a block cache)FileModegetFileMode()File Mode
-
-
-
Method Detail
-
getFileMode
FileMode getFileMode()
File Mode- Specified by:
getFileModein interfaceBlockParams
-
getBlockSize
java.lang.Integer getBlockSize()
Block size - this is only configurable when the on-disk are created. After that, the same value as at creation must be used each time.- Specified by:
getBlockSizein interfaceBlockParams
-
getBlockReadCacheSize
java.lang.Integer getBlockReadCacheSize()
Block read cache size (mmap'ed files do not have a block cache)- Specified by:
getBlockReadCacheSizein interfaceBlockParams
-
getBlockWriteCacheSize
java.lang.Integer getBlockWriteCacheSize()
Block write cache size (mmap'ed files do not have a block cache)- Specified by:
getBlockWriteCacheSizein interfaceBlockParams
-
-