org.modeshape.graph.connector.base.cache
Interface CacheStatistics

All Known Implementing Classes:
DefaultCacheStatistics

public interface CacheStatistics

This interface provides access to statistics for an individual workspace cache.


Method Summary
 long getExpirations()
           
 long getHits()
           
 long getMisses()
           
 long getWrites()
           
 

Method Detail

getWrites

long getWrites()
Returns:
the number of times that a node was written to the cache

getHits

long getHits()
Returns:
the number of times that a node was retrieved from the cache

getMisses

long getMisses()
Returns:
the number of times that an attempt to retrieve a node from the cache failed because the node was not yet in the cache.

getExpirations

long getExpirations()
Returns:
the number of times that an attempt to retrieve a node from the cache failed because the node had previously been placed in the cache, but the time to live for the node in the cache had expired


Copyright © 2008-2011 JBoss, a division of Red Hat. All Rights Reserved.