You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ro...@apache.org on 2020/05/07 10:36:40 UTC

[lucene-solr] 02/02: LUCENE-9350: Add changes entry

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

romseygeek pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit c2db05ca208a34dd5cf42e1b392b1a17f2751c73
Author: Alan Woodward <ro...@apache.org>
AuthorDate: Thu May 7 11:33:17 2020 +0100

    LUCENE-9350: Add changes entry
---
 lucene/CHANGES.txt | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index e2ef874..9c0a5b1 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -74,6 +74,10 @@ Optimizations
 * LUCENE-9087: Build always trees with full leaves and lower the default value for maxPointsPerLeafNode to 512.
   (Ignacio Vera)
 
+* LUCENE-9350: Partial reversion of LUCENE-9068; holding levenshtein automata on FuzzyQuery can end
+  up blowing up query caches which use query objects as cache keys, so building the automata is
+  now delayed to search time again.  (Alan Woodward, Mike Drob)
+
 Bug Fixes
 ---------------------
 * LUCENE-9259: Fix wrong NGramFilterFactory argument name for preserveOriginal option (Paul Pazderski)