On 5/29/2019 6:57 AM, Saurabh Sharma wrote:
What can be the possible reasons for low cache usage? How can I leverage cache feature for high traffic indexes?
Your usage apparently does not use the exact same query (or filter query, in the case of filterCache) very often.
In order to achieve a high hit ratio on a cache, the same query will need to be used by many users. That's not happening here. I'm betting that each user is sending something unique to Solr - which means it will be impossible to get a hit, unless that user sends the same query again.
Thanks, Shawn