* Method to get the cache hit rate.
*
* @return the cache hit rate.
*/
public double hitRate() {
CacheStatistics stats = this.cache.getCacheStatistics();
return (double) stats.getCacheHits() /
((double) (stats.getCacheHits() + stats.getCacheMisses()));
}