Hi Geode community, Running some queries on a partitioned region I have noticed some behavior for the hitCount and missCount counters that does not look right to me:
If I retrieve an entry present in the region from gfsh using get, the hitCounter is incremented once and the missCounter is not incremented. But, if I run the same get from a java client (using ClientRegionShortcut.PROXY), what I see is that the hitCount is incremented once but also the missCount is incremented once. The hitCount is always incremented on the server hosting the bucket where the entry is stored while the missCount, sometimes is incremented on that same server while others it is incremented on the server not hosting the bucket. Is this a bug in Geode or could there an explanation for the different behavior depending on the client? Thanks in advance, /Alberto