lucene/lucene
Chris M. Hostetter f54178970e LUCENE-5472: IndexWriter.addDocument will now throw an IllegalArgumentException if a Term to be indexed exceeds IndexWriter.MAX_TERM_LENGTH
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1574595 13f79535-47bb-0310-9956-ffa450edef68
2014-03-05 18:05:25 +00:00
..
analysis SOLR-2934: increase buffer size for recent dictionaries with large amounts of AF/AM lines before charset 2014-03-04 17:51:20 +00:00
backwards
benchmark LUCENE-5449: Rename _TestUtil to TestUtil. 2014-02-19 01:38:33 +00:00
classification LUCENE-5466: query is always null in countDocsWithClass() of SimpleNaiveBayesClassifier. 2014-02-28 00:49:39 +00:00
codecs LUCENE-5477: add near-real-time add/update/refresh to AnalyzingInfixSuggester 2014-02-28 16:39:34 +00:00
core LUCENE-5472: IndexWriter.addDocument will now throw an IllegalArgumentException if a Term to be indexed exceeds IndexWriter.MAX_TERM_LENGTH 2014-03-05 18:05:25 +00:00
demo LUCENE-5474: Add example for retrieving facet counts without retrieving documents 2014-03-02 11:42:42 +00:00
expressions LUCENE-5449: Rename _TestUtil to TestUtil. 2014-02-19 01:38:33 +00:00
facet fix this test to sidestep slow config 2014-03-03 11:09:13 +00:00
grouping LUCENE-5449: Rename _TestUtil to TestUtil. 2014-02-19 01:38:33 +00:00
highlighter LUCENE-5453: some trivial refactoring to postingshighlighter 2014-02-19 17:44:02 +00:00
join LUCENE-5486: allow out-of-order collector selection with query time joins 2014-03-03 17:10:45 +00:00
licenses SOLR-5613: Add checksum files 2014-02-25 08:17:18 +00:00
memory LUCENE-5463: RUE.(human)sizeOf(Object) is now a forbidden API. 2014-02-24 18:28:27 +00:00
misc LUCENE-5449: Rename _TestUtil to TestUtil. 2014-02-19 01:38:33 +00:00
queries LUCENE-5478: CommonTermsQuery now allows to create custom term queries 2014-02-27 15:14:46 +00:00
queryparser LUCENE-5449: Rename _TestUtil to TestUtil. 2014-02-19 01:38:33 +00:00
replicator LUCENE-5449: Rename _TestUtil to TestUtil. 2014-02-19 01:38:33 +00:00
sandbox LUCENE-5454: SortField for SortedSetDV 2014-02-20 01:21:17 +00:00
site LUCENE-5383: fix changes2html to link pull requests 2014-01-06 19:51:50 +00:00
spatial LUCENE-5449: Rename _TestUtil to TestUtil. 2014-02-19 01:38:33 +00:00
suggest LUCENE-5477: add near-real-time add/update/refresh to AnalyzingInfixSuggester 2014-02-28 16:39:34 +00:00
test-framework LUCENE-5481: Don't run unnecessary merges in IndexWriter.forceMerge. 2014-02-28 13:23:13 +00:00
tools LUCENE-5463: Unbreak forbidden APIs for Solr, remove broken RUE.sizeOf(String) and add new forbidden APIs to the Maven build. 2014-02-24 23:44:14 +00:00
BUILD.txt LUCENE-4747: Move to Java 7 in trunk 2013-03-18 12:28:52 +00:00
CHANGES.txt LUCENE-5472: IndexWriter.addDocument will now throw an IllegalArgumentException if a Term to be indexed exceeds IndexWriter.MAX_TERM_LENGTH 2014-03-05 18:05:25 +00:00
JRE_VERSION_MIGRATION.txt Add Java 8 to list 2014-01-05 17:31:05 +00:00
LICENSE.txt
MIGRATE.txt LUCENE-5392: add/improve analysis package docs to reflect API changes in trunk (closes #17) 2014-01-10 15:41:16 +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-5339: Gilad's feedback, improve javadocs 2013-11-27 12:07:30 +00:00
common-build.xml LUCENE-5463: Unbreak forbidden APIs for Solr, remove broken RUE.sizeOf(String) and add new forbidden APIs to the Maven build. 2014-02-24 23:44:14 +00:00
ivy-settings.xml Update some ANT plugins: 2013-12-04 00:54:08 +00:00
ivy-versions.properties SOLR-5613: Upgrade to commons-codec 1.9 for better BeiderMorseFilter performance 2014-02-25 07:09:07 +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