Hi Arghya,

If you think of Geode like a cache, totalHitCount would mean the total number of times you found values when doing a get() with a key. Similarly totalMissCount would mean the total number of time you did not find a value when doing a get().

Usually a higher hitCount is better than a lower hitCount, because it means that you could find the data for a key lookup.

Are you using CacheLoaders? As typically a low hitCount could mean that the data that is being looked up is not within Geode and one is trying to load it (read-through) from a data source. Or it could mean that some one is trying to look up keys that don't exist within your Region.

How are you using/interacting with Geode?

--Udo

On 08/10/2015 04:53 PM, arghya sadhu wrote:
Hi All,

What is the meaning of low totalHitCount and high totalMissCount while running show metrics in gfsh console.In my application I am seeing low totalHitCount and high totalMissCount.Hence i want to know if this is ok or something to worry about?

Thanks,
Arghya

Reply via email to