Re: org.apache.lucene.search.BooleanWeight.bulkScorer() and BulkScorer.score()

2021-10-01 Thread Adrien Grand
Is your profiler reporting inclusive or exclusive costs for each function? Ie. does it exclude time spent in functions that are called within a function? I'm asking because it makes total sense for IndexSearcher#search to spend most of its time is BulkScorer#score, which coordinates the whole

org.apache.lucene.search.BooleanWeight.bulkScorer() and BulkScorer.score()

2021-10-01 Thread Baris Kazar
Hi,- I performance profiled my application via jvisualvm on Java and saw that 75% of the search process from org.apache.lucene.search.IndexSearcher.search() are spent on these units: org.apache.lucene.search.BooleanWeight.bulkScorer() and BulkScorer.score() Is there any study or project to speed