• Bug
  • Status: New
  • 2 Major
  • Resolution:
  • Documentation
  • Reporter: amiller
  • October 07, 2009
  • 0
  • Watchers: 0
  • October 09, 2009

Description

This page: http://ehcache.org/documentation/samples.html

Has a bunch of examples for the stats like:

Cache cache = manager.getCache(“sampleCache1”); int hits = cache.getHitCount();

but I think these should really be more like:

Cache cache = manager.getCache(“sampleCache1”); Statistics stats = cache.getStatistics(); int hits = stats.getHitCount();

Comments

gluck 2009-10-09

Also add missing features.

Send a link around with stage link.