Dear experts, I have a question about the following change: The Lucene9.11 changed the Posting list format (Lucene GITHUB#12696 <https://github.com/apache/lucene/pull/12696>: Change Postings back to using FOR in Lucene99PostingsFormat. Freqs, positions and offset keep using PFOR)
However, in our (Mongodb Atlas Search) internal performance testing, we saw an increase of query latency up to 32% on match-all and match-many inverted index based queries, e.g. query.phrase-slop-0 and query.date-facet-match-all. I wonder if the community sees similar performance regressions on some queries for the Lucene99PostingsFormat. This ES PR <https://github.com/elastic/elasticsearch/pull/103601> diverged from Lucene. Lucene 9.9 has introduced a new posting format that uses FOR instead of PFOR. Elasticsearch prefers the former format, therefore they introduce it as their own posting format here <https://github.com/elastic/elasticsearch/tree/main/server/src/main/java/org/elasticsearch/index/codec/postings>. However, ES cited the reason as only being index size increase. Thank you very much!