jgq2008303393 commented on a change in pull request #940: LUCENE-9002: Query caching leads to absurdly slow queries URL: https://github.com/apache/lucene-solr/pull/940#discussion_r334745614
########## File path: lucene/core/src/java/org/apache/lucene/search/LRUQueryCache.java ########## @@ -114,12 +115,16 @@ * Expert: Create a new instance that will cache at most <code>maxSize</code> * queries with at most <code>maxRamBytesUsed</code> bytes of memory, only on * leaves that satisfy {@code leavesToCache}. + * + * Also, clauses whose cost is {@code skipCacheFactor} times more than the cost of the top-level query + * will not be cached in order to not slow down queries too much. */ public LRUQueryCache(int maxSize, long maxRamBytesUsed, - Predicate<LeafReaderContext> leavesToCache) { + Predicate<LeafReaderContext> leavesToCache, long skipCacheFactor) { this.maxSize = maxSize; this.maxRamBytesUsed = maxRamBytesUsed; this.leavesToCache = leavesToCache; + this.skipCacheFactor = skipCacheFactor; Review comment: Considering the multiplication overflow problem below, I will update the code here : ) ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org