HBASE-26980 Update javadoc of BucketCache.java (#4374)
Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
parent
bf93df0870
commit
c02e7553d4
|
@ -90,8 +90,9 @@ import org.apache.hadoop.hbase.shaded.protobuf.generated.BucketCacheProtos;
|
|||
/**
|
||||
* BucketCache uses {@link BucketAllocator} to allocate/free blocks, and uses
|
||||
* BucketCache#ramCache and BucketCache#backingMap in order to
|
||||
* determine if a given element is in the cache. The bucket cache can use on-heap or
|
||||
* off-heap memory {@link ByteBufferIOEngine} or in a file {@link FileIOEngine} to
|
||||
* determine if a given element is in the cache. The bucket cache can use
|
||||
* off-heap memory {@link ByteBufferIOEngine} or mmap {@link ExclusiveMemoryMmapIOEngine}
|
||||
* or pmem {@link SharedMemoryMmapIOEngine} or local files {@link FileIOEngine} to
|
||||
* store/read the block data.
|
||||
*
|
||||
* <p>Eviction is via a similar algorithm as used in
|
||||
|
|
Loading…
Reference in New Issue