@MXBean public interface BufferPoolMXBean
BufferPool
, including counters for events such as physical I/O
operations, evictions, and hit ratio.Modifier and Type | Field and Description |
---|---|
static String |
MXBEAN_NAME |
Modifier and Type | Method and Description |
---|---|
int |
getBufferCount() |
int |
getBufferSize() |
int |
getDirtyPageCount()
Get the count of dirty pages (pages that contain updates not yet written
to disk) in this pool.
|
long |
getEarliestDirtyTimestamp() |
long |
getEvictCount() |
long |
getForcedCheckpointWriteCount() |
long |
getForcedWriteCount() |
long |
getHitCount()
Return the number of lookup operations for pages in this pool for which
the page image was already found in this
BufferPool . |
double |
getHitRatio()
Get the "hit ratio" - the number of hits divided by the number of overall
gets.
|
long |
getMissCount()
Return the number of lookup operations for pages that resulted in a
physical disk read operation.
|
long |
getNewCount() |
int |
getReaderClaimedPageCount()
Get the count of pages on which running threads have reader
(non-exclusive), but not writer (exclusive) claims in this
BufferPool . |
int |
getValidPageCount() |
long |
getWriteCount() |
int |
getWriterClaimedPageCount()
Get the count of pages on which running threads have writer (exclusive)
claims in this
BufferPool . |
static final String MXBEAN_NAME
int getBufferSize()
Buffer
s managed by this poolint getBufferCount()
Buffer
s managed by this pool.long getMissCount()
long getHitCount()
BufferPool
. This
number, in comparison with the get counter, indicates how effective the
cache is in reducing disk I/O.long getNewCount()
BufferPool
.long getEvictCount()
BufferPool
to make room for newly read or created
pages.long getWriteCount()
BufferPool
.long getForcedCheckpointWriteCount()
BufferPool
due to checkpoints.long getForcedWriteCount()
BufferPool
due to eviction.double getHitRatio()
BufferPool
are successful - i.e., that the cache is
effectively reducing the need for disk read operations.BufferPool
to total
number of pages accessedint getValidPageCount()
BufferPool
int getDirtyPageCount()
int getReaderClaimedPageCount()
BufferPool
.int getWriterClaimedPageCount()
BufferPool
.long getEarliestDirtyTimestamp()
BufferPool
.Copyright © 2025 Open Identity Platform Community. All rights reserved.