lucene/lucene
Michael McCandless c40a12dd46 jdocs: note that calling close(false) can hit MergeAbortedExc's in optimize, addIndexes(IndexReader[]), expungeDeletes
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1063837 13f79535-47bb-0310-9956-ffa450edef68
2011-01-26 19:18:48 +00:00
..
backwards LUCENE-2516: Cary over changes to trunk (but they are inactive, as we have currently no backwards) 2010-07-05 09:19:51 +00:00
contrib LUCENE-2474: add expert ReaderFinishedListener API, for external caches to evict entries for readers 2011-01-25 22:42:37 +00:00
docs LUCENE-2413: directory and package fixes 2010-06-16 11:33:29 +00:00
lib LUCENE-2413: consolidate remaining concrete core analyzers to modules/analysis 2010-05-25 20:16:44 +00:00
src jdocs: note that calling close(false) can hit MergeAbortedExc's in optimize, addIndexes(IndexReader[]), expungeDeletes 2011-01-26 19:18:48 +00:00
.cvsignore SVN-GIT conversion, path copy emulation. 2016-01-23 01:18:53 +01:00
BUILD.txt SVN-GIT conversion, path copy emulation. 2016-01-23 01:18:53 +01:00
CHANGES.txt LUCENE-1846: DateTools now uses the US locale everywhere, so DateTools.round() is safe also in strange locales 2011-01-25 22:56:18 +00:00
JRE_VERSION_MIGRATION.txt SVN-GIT conversion, path copy emulation. 2016-01-23 01:18:53 +01:00
LICENSE.txt LUCENE-2449: add 'knob' (-Drandom.multiplier=N, defaults to 1) to tune up how much random testing is done; fix sneaky bugs (workaround java's bug in new String(int[], int, int); nasty key reuse bug in DBLRUCache) that this deeper testing uncovered 2010-05-10 07:47:12 +00:00
MIGRATE.txt LUCENE-2236: per-field similarity 2011-01-24 19:13:31 +00:00
NOTICE.txt LUCENE-2719: Readded utility class org.apche.lucene.util.SorterTemplate with support for faster quickSort using pivot values and also merge sort and insertion sort. This removes code duplication and slow Collections/Arrays.sort usage. 2010-10-27 15:16:56 +00:00
README.txt include the demo war file in 'ant dist' and change the README to refer to the new location 2010-05-28 12:49:22 +00:00
build.xml added support for maven artifact generation of the new Solr UIMA contrib; the top-level get-maven-poms target now forces copying of all of the source pom.xml files, even if the source is not newer than the target files, so that version changes will always take effect when specified through the -Dversion ant cmdline option 2011-01-24 19:33:14 +00:00
common-build.xml LUCENE-2657: Replace Maven POM templates with full POMs 2011-01-21 03:44:13 +00:00
index.html SVN-GIT conversion, path copy emulation. 2016-01-23 01:18:53 +01:00

README.txt

Lucene README file

INTRODUCTION

Lucene is a Java full-text search engine.  Lucene is not a complete
application, but rather a code library and API that can easily be used
to add search capabilities to applications.

The Lucene web site is at:
  http://lucene.apache.org/

Please join the Lucene-User mailing list by sending a message to:
  java-user-subscribe@lucene.apache.org

FILES

lucene-core-XX.jar
  The compiled lucene library.

contrib/demo/lucene-demo-XX.jar
  The compiled simple example code.

contrib/demo/luceneweb.war
  The compiled simple example Web Application.

contrib/*
  Contributed code which extends and enhances Lucene, but is not
  part of the core library.  Of special note are the JAR files in the analyzers directory which
  contain various analyzers that people may find useful in place of the StandardAnalyzer.



docs/index.html
  The contents of the Lucene website.

docs/api/index.html
  The Javadoc Lucene API documentation.  This includes the core
  library, the demo, as well as all of the contrib modules.

src/java
  The Lucene source code.

contrib/demo/src
  Some example code.