lucene/lucene
Michael McCandless 19c70cab54 LUCENE-6395: MemoryIndex's TermsEnum.seekExact(long ord) was failing to set the term bytes
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1671540 13f79535-47bb-0310-9956-ffa450edef68
2015-04-06 14:22:49 +00:00
..
analysis Remove unnecessary svn:executable from some files 2015-04-03 21:56:33 +00:00
backward-codecs LUCENE-6286: Removed IndexSearcher methods that take a Filter object. 2015-02-24 17:43:10 +00:00
benchmark Remove unnecessary svn:executable from some files 2015-04-03 21:56:33 +00:00
classification LUCENE-6224: cut over more package.htmls 2015-02-09 16:12:32 +00:00
codecs merge trunk up to r1670923 2015-04-02 15:37:39 +00:00
core fix empty string corner cases 2015-04-06 09:03:35 +00:00
demo LUCENE-6300: Remove multi-term filters. 2015-02-27 14:12:02 +00:00
expressions LUCENE-6286: Removed IndexSearcher methods that take a Filter object. 2015-02-24 17:43:10 +00:00
facet LUCENE-6377: Pass previous reader to SearcherFactory#newSearcher 2015-04-01 13:45:26 +00:00
grouping LUCENE-6303: CachingWrapperFilter -> CachingWrapperQuery, FilterCache -> QueryCache and added caching to IndexSearcher. 2015-02-27 18:09:01 +00:00
highlighter Remove unnecessary svn:executable from some files 2015-04-03 21:56:33 +00:00
join LUCENE-6352: Added a new query time join to the join module that uses global ordinals, which is faster for subsequent joins between reopens. 2015-04-02 22:00:26 +00:00
licenses Remove unnecessary svn:executable from some files 2015-04-03 21:56:33 +00:00
memory LUCENE-6395: MemoryIndex's TermsEnum.seekExact(long ord) was failing to set the term bytes 2015-04-06 14:22:49 +00:00
misc LUCENE-6271: merge trunk changes up to r1670529 2015-04-01 01:10:11 +00:00
queries LUCENE-6333: fix hashcode impl for TermsQuery 2015-03-13 17:56:34 +00:00
queryparser SOLR-7258: Forbid MessageFormat.format and MessageFormat single-arg constructor 2015-03-17 21:52:05 +00:00
replicator Remove unnecessary svn:executable from some files 2015-04-03 21:56:33 +00:00
sandbox add a couple TermAutomatonQuery tests 2015-04-06 14:18:17 +00:00
site Remove unnecessary svn:executable from some files 2015-04-03 21:56:33 +00:00
spatial LUCENE-4942: Fix BytesRefIteratorTokenStream's attribute clone method. 2015-03-11 17:46:59 +00:00
suggest LUCENE-6339: fix test (ensure the maximum requested size is bounded to 1000) 2015-04-03 22:40:37 +00:00
test-framework LUCENE-6271: add vectors tests for postings enum api 2015-04-03 20:59:31 +00:00
tools SOLR-7258: Forbid MessageFormat.format and MessageFormat single-arg constructor 2015-03-17 21:52:05 +00:00
BUILD.txt LUCENE-5950: Move to Java 8 as minimum Java version 2014-11-20 22:47:21 +00:00
CHANGES.txt LUCENE-6395: MemoryIndex's TermsEnum.seekExact(long ord) was failing to set the term bytes 2015-04-06 14:22:49 +00:00
JRE_VERSION_MIGRATION.txt Add Java 8 to list 2014-01-05 17:31:05 +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 LUCENE-5961: Fix the exists() method for FunctionValues returned by many ValueSoures to behave properly when wrapping other ValueSources which do not exist for the specified document 2014-10-16 19:05:20 +00:00
NOTICE.txt Fix NOTICE text to use "developed at " instead of "developed by" 2014-08-15 17:52:12 +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 LUCENE-5950: Move to Java 8 as minimum Java version 2014-11-20 22:47:21 +00:00
build.xml LUCENE-5968: Improve error message when 'ant beast' is run on top-level modules 2014-11-29 23:52:42 +00:00
common-build.xml LUCENE-6238: minimize tests.policy 2015-02-25 16:23:44 +00:00
ivy-ignore-conflicts.properties Ignore the existence of a newer guice version that is an indirect dependency (4.0-beta5) than the direct dependency (3.0) 2014-09-25 04:27:59 +00:00
ivy-settings.xml fix unbearably slow ivy-settings 2015-03-03 00:56:26 +00:00
ivy-versions.properties SOLR-6865: Upgrade HttpClient/Core/Mime to 4.4.1. 2015-04-03 15:10:00 +00:00
module-build.xml LUCENE-6134: fix typos: it's->its, its->it's, etc. 2014-12-24 05:48:58 +00:00
version.properties LUCENE-6363: Fix typo in version.properties file 2015-03-18 00:25:55 +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