lucene/lucene
Michael McCandless b23902b0ac LUCENE-4998: add DocumentExpressionDictionary, to compute each suggestion's weight using a javascript expression
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1533808 13f79535-47bb-0310-9956-ffa450edef68
2013-10-19 19:01:07 +00:00
..
analysis LUCENE-5269: make test use less RAM 2013-10-11 04:38:57 +00:00
backwards LUCENE-3753: Restructure the Lucene build system 2012-02-07 19:59:05 +00:00
benchmark LUCENE-5240: additional safety in Tokenizer state machine 2013-10-05 16:41:28 +00:00
classification LUCENE-5284 - added method for training with a Query filter 2013-10-17 07:02:59 +00:00
codecs LUCENE-5268: fix test failures: bloom must first call delegate.write, then write its own 2013-10-14 20:21:04 +00:00
core Don't mention BitSet in DocIdSet.isCacheable() documentation, since CachingWrapperFilter doesn't use BitSets for caching anymore (fix suggested by Paul Elschot). 2013-10-18 19:20:41 +00:00
demo LUCENE-5249: All Lucene/Solr modules should use the same dependency versions 2013-10-01 21:01:12 +00:00
expressions LUCENE-5258: add distance function to expressions/ 2013-10-06 20:47:32 +00:00
facet improve test 2013-10-17 20:18:23 +00:00
grouping add missing @link 2013-09-16 02:09:50 +00:00
highlighter clarify exactly what the default parameter is 2013-10-15 13:39:28 +00:00
join LUCENE-5225: The ToParentBlockJoinQuery only keeps tracks of the the child doc ids and child scores if the ToParentBlockJoinCollector is used. 2013-10-01 08:54:45 +00:00
licenses LUCENE-5249: All Lucene/Solr modules should use the same dependency versions 2013-10-01 21:01:12 +00:00
memory LUCENE-5270: add Terms.hasFreqs 2013-10-10 14:42:54 +00:00
misc LUCENE-5216: Fix SegmentInfo.attributes when updates are involved 2013-09-29 19:51:22 +00:00
queries javadocs; fix compiler warning 2013-10-11 15:06:31 +00:00
queryparser LUCENE-5261: add simple API to build queries from analysis chain 2013-10-09 15:59:24 +00:00
replicator LUCENE-5249: All Lucene/Solr modules should use the same dependency versions 2013-10-01 21:01:12 +00:00
sandbox LUCENE-5259: convert analysis consumers to try-with-resources 2013-10-07 06:24:25 +00:00
site stop emitting warning about undefined variable $1 in the case of no leading text to trim from a line (i.e. $type is empty and there is no leading whitespace) 2013-10-02 22:57:41 +00:00
spatial Remove unneeded link in spatial package.html 2013-10-08 21:38:19 +00:00
suggest LUCENE-4998: add DocumentExpressionDictionary, to compute each suggestion's weight using a javascript expression 2013-10-19 19:01:07 +00:00
test-framework LUCENE-5268: fix test failures: bloom must first call delegate.write, then write its own 2013-10-14 20:21:04 +00:00
tools LUCENE-5295: Allow the license checker to optionally avoid check sum comparisons. 2013-10-19 17:20:20 +00:00
BUILD.txt LUCENE-4747: Move to Java 7 in trunk 2013-03-18 12:28:52 +00:00
CHANGES.txt LUCENE-4998: add DocumentExpressionDictionary, to compute each suggestion's weight using a javascript expression 2013-10-19 19:01:07 +00:00
JRE_VERSION_MIGRATION.txt LUCENE-4008: Use pegdown to transform MIGRATE.txt and other text-only files to readable HTML. Please alsows run ant documentation when you have changed anything on those files to check output. 2012-04-22 21:15:27 +00:00
LICENSE.txt LUCENE-3965: merge LICENSE/NOTICE.txt and cleanup some outdated inconsistencies 2012-04-18 03:29:38 +00:00
MIGRATE.txt StorableDocument -> StoredDocument 2012-11-03 00:25:59 +00:00
NOTICE.txt Make the Solr NOTICE.txt be a superset of Lucene's NOTICE.txt 2013-05-16 18:26:01 +00:00
README.txt LUCENE-4437: add note to README about how to build documentation 2012-09-27 15:57:30 +00:00
SYSTEM_REQUIREMENTS.txt Update link in SysReq page (the old one is still valid and redirects, but to specific) 2013-04-14 10:44:04 +00:00
build.xml LUCENE-5257: Lock down centralized versioning of ivy dependencies 2013-10-04 18:03:45 +00:00
common-build.xml LUCENE-5273: Only unpack Lucene/Solr jars from binary distributions - other stuff not needed 2013-10-13 16:36:05 +00:00
ivy-settings.xml update broken links for maven mirror 2013-10-09 08:56:15 +00:00
ivy-versions.properties LUCENE-5257: Lock down centralized versioning of ivy dependencies 2013-10-04 18:03:45 +00:00
module-build.xml Remove obsolete ${project.classpath} pathelement from the "base.classpath" path and the classification module's "classpath" path 2013-09-20 06:25:12 +00: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

Files are organized by module, for example in core/:

* `core/lucene-core-XX.jar`:
  The compiled core Lucene library.

To review the documentation, read the main documentation page, located at:
`docs/index.html`

To build Lucene or its documentation for a source distribution, see BUILD.txt