Jakub Slowinski
Jakub Slowinski
Readme updates to: * Lucene version * Added GitHub search link * SNAPSHOT version
More detail in https://github.com/apache/lucene/issues/12918. Changing PFOR encoding to FOR for doc blocks in #12741, required bumping the codec version. The codec upgrade process has numerous moving parts and it required...
Removing usage of TopScoreDocCollector + TopFieldCollector deprecated methods (#create, #createSharedManager) Closes #13499 Copying description from issue: These methods were deprecated in https://github.com/apache/lucene/pull/240 which is part of Lucene 10.0. Since they...
Removing 2 cases of bottomX optimizations where insertWithOverflow already handles the check. Closes #13175 The diff looks funny because of unnesting, but, per file, I am just removing `bottomOrd` and...
Fixing some IDE "warnings", such as removing some dead code + fixing a link + adding use of try-with-resources. Did not fix `'search(org.apache.lucene.search.Query, org.apache.lucene.search.Collector)' is deprecated`, since it will be...
### Description These methods were deprecated in https://github.com/apache/lucene/pull/240 which is part of Lucene 10.0. Since they are not marked for deprecation in Lucene 9.x, they will not be removed with...
Removing the deprecated parameters, -fast, -slow, -crossCheckTermVectors from CheckIndex. Their usage is replaced with `-level` with respective values of `1`, `3`, `3`. Follow-up on the deprecation done in #11023.