From 61c2d20d8a2f148b3b7491e18140dfa0ca9b099b Mon Sep 17 00:00:00 2001 From: Yonik Seeley Date: Wed, 19 Sep 2007 18:30:54 +0000 Subject: [PATCH] SOLR-354: optimize delete by query of all docs... changes were accidentally committed previously in r576683 git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@577412 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 880aa930f9a..b1cfdf1ccc8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -142,6 +142,9 @@ Optimizations 3. SOLR-348: short-circuit faceting if less than mincount docs match. (yonik) + 4. SOLR-354: Optimize removing all documents. Now when a delete by query + of *:* is issued, the current index is removed. (yonik) + Bug Fixes 1. Make TextField respect sortMissingFirst and sortMissingLast fields. (J.J. Larrea via yonik)