Package org.apache.solr.store.blockcache
Class BlockDirectoryCache
- java.lang.Object
-
- org.apache.solr.store.blockcache.BlockDirectoryCache
-
-
Constructor Summary
Constructors Constructor Description BlockDirectoryCache(BlockCache blockCache, String path, Metrics metrics)BlockDirectoryCache(BlockCache blockCache, String path, Metrics metrics, boolean releaseBlocks)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete(String name)Remove a file from the cache.booleanfetch(String name, long blockId, int blockOffset, byte[] b, int off, int lengthToReadInBlock)Fetch the specified cache file content.BlockCachegetBlockCache()Expert: mostly for testsvoidreleaseResources()Release any resources associated with the cache.voidrenameCacheFile(String source, String dest)Expert: Rename the specified file in the cache.longsize()Number of entries in the cache.voidupdate(String name, long blockId, int blockOffset, byte[] buffer, int offset, int length)Update the content of the specified cache file.
-
-
-
Constructor Detail
-
BlockDirectoryCache
public BlockDirectoryCache(BlockCache blockCache, String path, Metrics metrics)
-
BlockDirectoryCache
public BlockDirectoryCache(BlockCache blockCache, String path, Metrics metrics, boolean releaseBlocks)
-
-
Method Detail
-
getBlockCache
public BlockCache getBlockCache()
Expert: mostly for tests- WARNING: This API is experimental and might change in incompatible ways in the next release.
-
delete
public void delete(String name)
Description copied from interface:CacheRemove a file from the cache.
-
update
public void update(String name, long blockId, int blockOffset, byte[] buffer, int offset, int length)
Description copied from interface:CacheUpdate the content of the specified cache file. Creates cache entry if necessary.
-
fetch
public boolean fetch(String name, long blockId, int blockOffset, byte[] b, int off, int lengthToReadInBlock)
Description copied from interface:CacheFetch the specified cache file content.
-
size
public long size()
Description copied from interface:CacheNumber of entries in the cache.
-
renameCacheFile
public void renameCacheFile(String source, String dest)
Description copied from interface:CacheExpert: Rename the specified file in the cache. Allows a file to be moved without invalidating the cache.- Specified by:
renameCacheFilein interfaceCache- Parameters:
source- original namedest- final name
-
releaseResources
public void releaseResources()
Description copied from interface:CacheRelease any resources associated with the cache.- Specified by:
releaseResourcesin interfaceCache
-
-