You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2023/02/21 13:00:19 UTC

[lucene] branch main updated (dbfca9a62b8 -> cce33b07e4f)

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

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


    from dbfca9a62b8 Minor vector search matching doc optimizations (#12152)
     add cce33b07e4f Skip the TokenStream overhead when indexing simple keywords. (#12139)

No new revisions were added by this update.

Summary of changes:
 lucene/CHANGES.txt                                 |   2 +
 .../src/java/org/apache/lucene/document/Field.java |   5 +
 .../org/apache/lucene/document/InvertableType.java |  40 ++++
 .../org/apache/lucene/document/KeywordField.java   |  17 +-
 .../org/apache/lucene/document/StringField.java    |  15 ++
 .../org/apache/lucene/index/FieldInvertState.java  |  18 +-
 .../lucene/index/FreqProxTermsWriterPerField.java  |   4 +-
 .../org/apache/lucene/index/IndexableField.java    |   7 +
 .../org/apache/lucene/index/IndexingChain.java     |  60 ++++++
 .../lucene/index/TermVectorsConsumerPerField.java  |   3 +
 .../apache/lucene/index/TestDocumentWriter.java    | 228 ++++++++++++++++++++-
 .../lucene/index/TestExceedMaxTermLength.java      |  67 +++++-
 .../org/apache/lucene/index/TestFieldReuse.java    |  12 +-
 .../apache/lucene/index/TestIndexableField.java    |  11 +
 .../apache/lucene/index/memory/MemoryIndex.java    |  30 +++
 .../lucene/index/memory/TestMemoryIndex.java       | 149 ++++++++++++++
 .../apache/lucene/misc/document/LazyDocument.java  |   8 +-
 17 files changed, 654 insertions(+), 22 deletions(-)
 create mode 100644 lucene/core/src/java/org/apache/lucene/document/InvertableType.java