You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2019/04/09 11:30:59 UTC

[lucene-solr] branch jira/lucene-2562-luke-swing-3 updated: LUCENE-2562: Add changes entry so it's ready to squash-merge

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

uschindler pushed a commit to branch jira/lucene-2562-luke-swing-3
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/jira/lucene-2562-luke-swing-3 by this push:
     new aa2ac33  LUCENE-2562: Add changes entry so it's ready to squash-merge
aa2ac33 is described below

commit aa2ac336623cfa1da961a3022ef4151034d8b5da
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Tue Apr 9 13:30:24 2019 +0200

    LUCENE-2562: Add changes entry so it's ready to squash-merge
---
 lucene/CHANGES.txt | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index ce5c81f..84228aa 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -34,6 +34,21 @@ API Changes
   subclasses override it. FilterDirectory now delegates the call, ensuring
   correct default behaviour for subclasses. (Henning Andersen)
 
+New Features
+
+* LUCENE-2562: The well-known graphical user interface for inspecting Lucene
+  indexes "Luke" was added as a Lucene module. It can be started from the
+  binary distribution by calling the shell scripts in the module folder
+  or from the source checkout by using `ant -f lucene/luke/build.xml run`.
+  Luke provides a Swing-based user interface and can be used to open
+  Lucene or Solr (or Elasticsearch) indexes, inspect documents, check index
+  commits and segments, or test (custom) analyzers. It also has maintenance
+  functions to check index structures and force merge indexes for archival.
+  Luke was originally developed by Andrzej Bialecki, later maintained by
+  Dmitry Kan and finally rewritten by Tomoko Uchida to use the ASF licensing
+  compatible Swing framework (as shipped with JDKs).
+  (Tomoko Uchida, Uwe Schindler)
+
 Bug fixes
 
 * LUCENE-8712: Polygon2D does not detect crossings through segment edges.