What is the difference between "cache misses" and "in memory cache misses" in Ehcache?

Viewed 1197

I'm looking in the EhCache statistics, I see these figures:

CacheMisses: 75977
CacheHits: 38151

InMemoryCacheMisses: 4843
InMemoryCacheHits: 38151

"memory" is the only store - no off-heap and no disk storage (overflowToDisk="false", diskPersistent="false"). So what does these two mean? I would expect them to be the same (the hits are the same), but the misses differ greatly.

2 Answers
Related