Package org.apache.solr.util
Class ConcurrentLRUCache.Stats
- java.lang.Object
-
- org.apache.solr.util.ConcurrentLRUCache.Stats
-
- All Implemented Interfaces:
org.apache.lucene.util.Accountable
- Enclosing class:
- ConcurrentLRUCache<K,V>
public static class ConcurrentLRUCache.Stats extends Object implements org.apache.lucene.util.Accountable
-
-
Constructor Summary
Constructors Constructor Description Stats()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(ConcurrentLRUCache.Stats other)
long
getCumulativeEvictions()
long
getCumulativeHits()
long
getCumulativeIdleEvictions()
long
getCumulativeLookups()
long
getCumulativeMisses()
long
getCumulativeNonLivePuts()
long
getCumulativePuts()
int
getCurrentSize()
long
ramBytesUsed()
-
-
-
Method Detail
-
getCumulativeLookups
public long getCumulativeLookups()
-
getCumulativeHits
public long getCumulativeHits()
-
getCumulativePuts
public long getCumulativePuts()
-
getCumulativeEvictions
public long getCumulativeEvictions()
-
getCumulativeIdleEvictions
public long getCumulativeIdleEvictions()
-
getCurrentSize
public int getCurrentSize()
-
getCumulativeNonLivePuts
public long getCumulativeNonLivePuts()
-
getCumulativeMisses
public long getCumulativeMisses()
-
add
public void add(ConcurrentLRUCache.Stats other)
-
ramBytesUsed
public long ramBytesUsed()
- Specified by:
ramBytesUsed
in interfaceorg.apache.lucene.util.Accountable
-
-