You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by so...@apache.org on 2021/08/13 16:15:45 UTC

[lucene] branch main updated (a9fb5a9 -> 624560a)

This is an automated email from the ASF dual-hosted git repository.

sokolov pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git.


    from a9fb5a9  LUCENE-10043: Decrease default LRUQueryCache#skipCacheFactor to 10 (#232)
     add 624560a  LUCENE-9614: add KnnVectorQuery implementation

No new revisions were added by this update.

Summary of changes:
 .../codecs/lucene90/Lucene90HnswVectorsReader.java |   2 +-
 .../org/apache/lucene/search/KnnVectorQuery.java   | 307 +++++++++++++++++++
 .../apache/lucene/search/TestKnnVectorQuery.java   | 324 +++++++++++++++++++++
 .../org/apache/lucene/util/TestVectorUtil.java     |  19 +-
 4 files changed, 645 insertions(+), 7 deletions(-)
 create mode 100644 lucene/core/src/java/org/apache/lucene/search/KnnVectorQuery.java
 create mode 100644 lucene/core/src/test/org/apache/lucene/search/TestKnnVectorQuery.java