mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 15:47:23 -04:00
Introduce Elasticsearch PostingFormat based on Lucene 90 positing format using PFOR (#103601)
Lucene 9.9 has introduced a new posting format that uses FOR instead of PFOR. Elasticsearch prefers the former format, therefore we introduce it as a our own posting format here.
This commit is contained in:
parent
812686a079
commit
4e7a0dae19
17 changed files with 5248 additions and 4 deletions
|
@ -419,7 +419,8 @@ module org.elasticsearch.server {
|
|||
provides org.apache.lucene.codecs.PostingsFormat
|
||||
with
|
||||
org.elasticsearch.index.codec.bloomfilter.ES85BloomFilterPostingsFormat,
|
||||
org.elasticsearch.index.codec.bloomfilter.ES87BloomFilterPostingsFormat;
|
||||
org.elasticsearch.index.codec.bloomfilter.ES87BloomFilterPostingsFormat,
|
||||
org.elasticsearch.index.codec.postings.ES812PostingsFormat;
|
||||
provides org.apache.lucene.codecs.DocValuesFormat with ES87TSDBDocValuesFormat;
|
||||
|
||||
exports org.elasticsearch.cluster.routing.allocation.shards
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue