public class QueryCacheStats extends java.lang.Object implements Streamable, ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
EMPTY_PARAMS
Constructor and Description |
---|
QueryCacheStats() |
QueryCacheStats(long ramBytesUsed,
long hitCount,
long missCount,
long cacheCount,
long cacheSize) |
Modifier and Type | Method and Description |
---|---|
void |
add(QueryCacheStats stats) |
long |
getCacheCount()
The number of
DocIdSet s that have been cached. |
long |
getCacheSize()
The number of
DocIdSet s that are in the cache. |
long |
getEvictions()
The number of
DocIdSet s that have been evicted from the cache. |
long |
getHitCount()
The number of successful lookups in the cache.
|
ByteSizeValue |
getMemorySize() |
long |
getMemorySizeInBytes() |
long |
getMissCount()
The number of lookups in the cache that failed to retrieve a
DocIdSet . |
long |
getTotalCount()
The total number of lookups in the cache.
|
void |
readFrom(StreamInput in)
Set this object's fields from a StreamInput.
|
XContentBuilder |
toXContent(XContentBuilder builder,
ToXContent.Params params) |
void |
writeTo(StreamOutput out)
Write this object's fields to a StreamOutput.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
isFragment
public QueryCacheStats()
public QueryCacheStats(long ramBytesUsed, long hitCount, long missCount, long cacheCount, long cacheSize)
public void add(QueryCacheStats stats)
public long getMemorySizeInBytes()
public ByteSizeValue getMemorySize()
public long getTotalCount()
public long getHitCount()
public long getMissCount()
DocIdSet
.public long getCacheCount()
DocIdSet
s that have been cached.public long getCacheSize()
DocIdSet
s that are in the cache.public long getEvictions()
DocIdSet
s that have been evicted from the cache.public void readFrom(StreamInput in) throws java.io.IOException
Streamable
readFrom
in interface Streamable
java.io.IOException
public void writeTo(StreamOutput out) throws java.io.IOException
Streamable
writeTo
in interface Streamable
java.io.IOException
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
toXContent
in interface ToXContent
java.io.IOException