@ManagedResource(description="Exposes LRUQueryCache statistics from default cache")
public interface QueryCacheStatsMBean
Modifier and Type | Method and Description |
---|---|
long |
getCacheCount() |
long |
getCacheSize() |
long |
getEvictionCount() |
long |
getHitCount() |
long |
getMissCount() |
long |
getRamBytesUsed() |
long |
getTotalCount() |
@ManagedAttribute(description="Number of cache entries that have been generated and put in the cache") long getCacheCount()
@ManagedAttribute(description="How many times a cached DocIdSet has been found and returned") long getHitCount()
@ManagedAttribute(description="How many times query was not contained in the cache") long getMissCount()
@ManagedAttribute(description="Number of times that a query has been looked up in the cache") long getTotalCount()
@ManagedAttribute(description="Number of cache entries that have been removed from the cache") long getEvictionCount()
@ManagedAttribute(description="Number of DocIdSets which are currently stored in the cache") long getCacheSize()
@ManagedAttribute(description="Memory usage of cache object in bytes") long getRamBytesUsed()