I think cumulative_ counters are the total count of successive SolrIndexSearchers' cache.
For example, you have a registered searcher and you see:

inserts: 1
cumulative_inserts: 1

Then you update your index and do commit, you got a new searcher.
At this moment, non cumulative_ counters come to zero.
Then you search something and you could see:

inserts: 1
cumulative_inserts: 2

And if you have enough room for inserting new entries, evictions
might be zero. To see none zero evictions, you can set
a small size for queryResultCache and try to issue many unique queries.
For example, set the size to 1, then issue 2 unique queries, then
you can see evictions: 1.

regards,

Koji


James liu wrote:
now i use admin gui to moniter cache config

i don't know the difference betwin cumulative_ and no *cumulative_* ,,,like
cumulative_inserts and inserts

and i find evictions always show zero....i m curious when it will change and
its meaning


Reply via email to