lucene/lucene
Martijn van Groningen 039bdbff0c oops, forgot to remove system.out.println
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1503843 13f79535-47bb-0310-9956-ffa450edef68
2013-07-16 19:31:12 +00:00
..
analysis LUCENE-5107: Properties files by Lucene are now written in UTF-8 encoding, Unicode is no longer escaped. Reading of legacy properties files with \u escapes is still possible 2013-07-12 17:10:22 +00:00
backwards LUCENE-3753: Restructure the Lucene build system 2012-02-07 19:59:05 +00:00
benchmark LUCENE-5107: Properties files by Lucene are now written in UTF-8 encoding, Unicode is no longer escaped. Reading of legacy properties files with \u escapes is still possible 2013-07-12 17:10:22 +00:00
classification LUCENE-5097: Analyzer now has an additional tokenStream(String fieldName, String text) method, so wrapping by StringReader for common use is no longer needed. This method uses an internal reuseable reader, which was previously only used by the Field class. 2013-07-08 17:55:48 +00:00
codecs LUCENE-5114: remove unused useCache param 2013-07-16 17:44:10 +00:00
core Fix initial sizing of MonotonicAppendingLongBuffer. 2013-07-16 17:50:00 +00:00
demo LUCENE-5055: "rat-sources" target now checks also build.xml, ivy.xml, forbidden-api signatures, and parts of resources folders. 2013-06-15 10:01:19 +00:00
facet LUCENE-5114: remove unused useCache param 2013-07-16 17:44:10 +00:00
grouping LUCENE-5114: remove unused useCache param 2013-07-16 17:44:10 +00:00
highlighter LUCENE-5114: remove unused useCache param 2013-07-16 17:44:10 +00:00
join LUCENE-5114: remove unused useCache param 2013-07-16 17:44:10 +00:00
licenses LUCENE-5089: Update to Morfologik 1.6.0. MorfologikAnalyzer and MorfologikFilter no longer support multiple "dictionaries" as there is only one dictionary available. 2013-07-03 12:14:50 +00:00
memory LUCENE-5114: remove unused useCache param 2013-07-16 17:44:10 +00:00
misc LUCENE-5113: Added (Monotonic)AppendingLongBuffer.freeze to pack the pending values. 2013-07-16 07:20:21 +00:00
queries oops, forgot to remove system.out.println 2013-07-16 19:31:12 +00:00
queryparser LUCENE-5097: Analyzer now has an additional tokenStream(String fieldName, String text) method, so wrapping by StringReader for common use is no longer needed. This method uses an internal reuseable reader, which was previously only used by the Field class. 2013-07-08 17:55:48 +00:00
replicator LUCENE-5047: Handle NoSuchFileException of Java 7 like FileNotFoundException when opeining index files; document this in Directory. 2013-06-11 22:26:08 +00:00
sandbox LUCENE-5097: Analyzer now has an additional tokenStream(String fieldName, String text) method, so wrapping by StringReader for common use is no longer needed. This method uses an internal reuseable reader, which was previously only used by the Field class. 2013-07-08 17:55:48 +00:00
site LUCENE-4944: Prepend 'v' to (currently numeric) id attributes for release sections, and fail with a nice message when encountering the same section more than once within a single release. 2013-04-20 00:01:55 +00:00
spatial LUCENE-5114: remove unused useCache param 2013-07-16 17:44:10 +00:00
suggest LUCENE-5114: remove unused useCache param 2013-07-16 17:44:10 +00:00
test-framework LUCENE-5114: remove unused useCache param 2013-07-16 17:44:10 +00:00
tools LUCENE-5107: Properties files by Lucene are now written in UTF-8 encoding, Unicode is no longer escaped. Reading of legacy properties files with \u escapes is still possible 2013-07-12 17:10:22 +00:00
BUILD.txt LUCENE-4747: Move to Java 7 in trunk 2013-03-18 12:28:52 +00:00
CHANGES.txt LUCENE-5088: Added TermFilter to filter docs by a specific term. 2013-07-16 18:43:02 +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 Refactor forbidden-apis a bit to make it easier to add new signatures, no need to have so many files slowing down the build; add Properties file rules 2013-07-12 09:35:40 +00:00
common-build.xml SOLR-4916: Re-add missing log="download-only" 2013-07-11 08:31:11 +00:00
ivy-settings.xml SOLR-4503: Add REST API methods to get schema information: fields, dynamicFields, fieldTypes, and copyFields. Restlet 2.1.1 is integrated and is used to service these requests. 2013-03-06 04:50:33 +00:00
module-build.xml LUCENE-4975: Add Replication module to Lucene 2013-05-13 11:57:22 +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