From e28663893ec7eb3919ceadb219fecaeb7e6d59c5 Mon Sep 17 00:00:00 2001 From: Alan Woodward Date: Thu, 7 May 2020 11:33:17 +0100 Subject: [PATCH] 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 fe9bd822af4..bb369b85e87 100644 --- a/lucene/CHANGES.txt +++ b/lucene/CHANGES.txt @@ -196,6 +196,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)