lucene/lucene
Grant Ingersoll f36c32405d LUCENE-2952: hook in dependency checking for license, notice
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1082535 13f79535-47bb-0310-9956-ffa450edef68
2011-03-17 15:34:21 +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-2952: add notices 2011-03-17 14:59:55 +00:00
docs LUCENE-2924: instruct users to download a source release to examine the source code 2011-03-04 12:29:04 +00:00
lib LUCENE-2952: add notices 2011-03-17 14:59:55 +00:00
src LUCENE-2970: SpecialOperations.isFinite had a terrible complexity, use a visited set to avoid it 2011-03-16 16:51:26 +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-2953: PriorityQueue's internal heap was made private final 2011-03-09 09:18:56 +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-2514, LUCENE-2551: collation uses byte[] keys, deprecate old unscalable locale sort/range, termrangequery/filter work on bytes 2011-02-28 05:15:50 +00:00
NOTICE.txt add junit, jline to NOTICE.txt 2011-03-06 20:33:04 +00:00
README.txt docs: fix demo 2011-03-12 19:27:20 +00:00
build.xml packaging: exclude BUILD.txt from binary distro 2011-03-12 19:50:41 +00:00
common-build.xml LUCENE-2952: hook in dependency checking for license, notice 2011-03-17 15:34:21 +00:00
index.html SVN-GIT conversion, path copy emulation. 2016-01-23 01:18:53 +01:00

README.txt

Apache 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 in a binary distribution:

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

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

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.

See BUILD.txt for building a source distribution