Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

25th June 2023, Apache Lucene™ 9.7 available

The Lucene PMC is pleased to announce the release of Apache Lucene 9.7

...

  • The new IndexWriter#updateDocuments(Query, Iterable) allows updating multiple documents that match a query at the same time.
  • Function queries can now compute similarity scores between kNN vectors.

Optimizations

  • KNN indexing and querying can now take advantage of vectorization for distance computation between vectors. To enable this, use exactly Java 20 or 21, and pass --add-modules jdk.incubator.vector as a command-line parameter to the Java program.
  • KNN queries now run concurrently if the IndexSearcher has been created with an executor.

  • Queries sorted by field are now able to dynamically prune hits only using the after value. This yields major speedups when paginating deeply.
  • Reduced merge-time overhead of computing the number of soft deletes.

...

  • Backward reading is no longer an adversarial case for BufferedIndexInput, used by NIOFSDirectory and SimpleFSDirectory. This addresses a performance bug when performing terms dictionary lookups with either of these directories.
  • GraphTokenStreamFiniteStrings#articulationPointsRecurse may no longer overflow the stack.
  • ... plus a number of helpful bug fixes!

Other

  • 'explain' is now implemented on TermAutomatonQuery
  • ... plus a number of helpful bug fixes!


Further details of changes are available in the change log available at: https://lucene.apache.org/core/9_7_0/changes/Changes.html.

...