: In the /admin/stats.jsp I have noticed that if the code above gets executed : then my queryResultCache hit count does not increase.
Filters are part of the cache key for the queryResultCache (because the cache contains the sorted paginated results *after* filters have been applied) so if your filters are unique for every request, you're never going to see a cache hit. -Hoss