| Package | Description |
|---|---|
| alluxio.client.file.cache | |
| alluxio.client.file.cache.store |
| Modifier and Type | Method and Description |
|---|---|
default int |
PageStore.get(PageId pageId,
int pageOffset,
int bytesToRead,
PageReadTargetBuffer buffer)
Gets part of a page from the store to the destination buffer.
|
int |
PageStore.get(PageId pageId,
int pageOffset,
int bytesToRead,
PageReadTargetBuffer buffer,
boolean isTemporary)
Gets part of a page from the store to the destination buffer.
|
int |
TimeBoundPageStore.get(PageId pageId,
int pageOffset,
int bytesToRead,
PageReadTargetBuffer target,
boolean isTemporary) |
int |
LocalCacheManager.get(PageId pageId,
int pageOffset,
int bytesToRead,
PageReadTargetBuffer buffer,
CacheContext cacheContext) |
int |
NoExceptionCacheManager.get(PageId pageId,
int pageOffset,
int bytesToRead,
PageReadTargetBuffer buffer,
CacheContext cacheContext) |
int |
CacheManagerWithShadowCache.get(PageId pageId,
int pageOffset,
int bytesToRead,
PageReadTargetBuffer target,
CacheContext cacheContext) |
int |
CacheManager.get(PageId pageId,
int pageOffset,
int bytesToRead,
PageReadTargetBuffer buffer,
CacheContext cacheContext)
Reads a part of a page if the queried page is found in the cache, stores the result in buffer.
|
default int |
PageStore.get(PageId pageId,
PageReadTargetBuffer buffer)
Gets a page from the store to the destination buffer.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ByteArrayTargetBuffer
Target buffer backed by bytes array for zero-copy read from page store.
|
class |
ByteBufferTargetBuffer
Target buffer backed by nio ByteBuffer for zero-copy read from page store.
|
| Modifier and Type | Method and Description |
|---|---|
int |
MemoryPageStore.get(PageId pageId,
int pageOffset,
int bytesToRead,
PageReadTargetBuffer target,
boolean isTemporary) |
int |
LocalPageStore.get(PageId pageId,
int pageOffset,
int bytesToRead,
PageReadTargetBuffer target,
boolean isTemporary) |
int |
RocksPageStore.get(PageId pageId,
int pageOffset,
int bytesToRead,
PageReadTargetBuffer target,
boolean isTemporary) |
Copyright © 2022. All Rights Reserved.