lucene/lucene
Shai Erera 22d9af41a4 Rename constructor parameter name 2016-12-14 13:49:42 +02:00
..
analysis LUCENE-7536: ASCIIFoldingFilterFactory.getMultiTermComponent can emit two tokens. 2016-11-18 10:07:09 +01:00
backward-codecs add basic sorted index bwc test 2016-11-16 11:55:29 -05:00
benchmark LUCENE-7526: UnifiedHighlighter: enhance MTQ passage relevancy. TokenStreamFromTermVector isn't used by the UH anymore. Refactor AnalysisOffsetStrategy into TokenStream and MemoryIndex strategies, and related refactorings from that. 2016-11-15 16:16:46 -05:00
classification LUCENE-7591 - approximate to no. of terms when DVs are not available 2016-12-12 10:00:21 +01:00
codecs fix stale comment 2016-12-08 18:17:25 -05:00
core Fix LeafReader.getNumericDocValues javadoc 2016-12-14 13:07:19 +02:00
demo LUCENE-7194: Ban Math.toRadians and Math.toDegrees 2016-06-22 03:53:47 -04:00
expressions LUCENE-7407: switch doc values usage to an iterator API, based on DocIdSetIterator, instead of random acces, freeing codecs for future improvements 2016-09-21 09:41:41 -04:00
facet LUCENE-7461: Refactor doc values queries to leverage the new iterator API. 2016-11-15 14:55:46 +01:00
grouping Revert the last change so we continue using randomize similarity for this test. 2016-11-13 17:15:13 -05:00
highlighter LUCENE-7575: Add UnifiedHighlighter field matcher predicate (AKA requireFieldMatch=false) 2016-12-05 16:11:57 -05:00
join LUCENE-7462: Give doc values APIs an `advanceExact` method. 2016-10-24 10:51:23 +02:00
licenses SOLR-9801: Upgrade jetty to 9.3.14.v20161028 2016-11-26 00:51:03 +05:30
memory LUCENE-7462: Give doc values APIs an `advanceExact` method. 2016-10-24 10:51:23 +02:00
misc Rename constructor parameter name 2016-12-14 13:49:42 +02:00
queries LUCENE-7513: Update to randomizedtesting 2.4.0. 2016-10-21 11:14:37 +02:00
queryparser LUCENE-7533: Classic query parser: disallow autoGeneratePhraseQueries=true when splitOnWhitespace=false (and vice-versa). 2016-11-17 19:18:18 -05:00
replicator make PrimaryNode's IndexWriter protected 2016-11-18 06:22:56 -05:00
sandbox fix RangeFieldQuery.scorer to return null if no docs in a segment indexed the field 2016-12-13 15:07:06 -06:00
site LUCENE-7543: Parse DOAP RDF files with Ant <xmlproperty> rather than Perl XML::Simple 2016-11-21 20:48:32 -05:00
spatial LUCENE-7407: switch doc values usage to an iterator API, based on DocIdSetIterator, instead of random acces, freeing codecs for future improvements 2016-09-21 09:41:41 -04:00
spatial-extras LUCENE-7461: Refactor doc values queries to leverage the new iterator API. 2016-11-15 14:55:46 +01:00
spatial3d LUCENE-7513: Update to randomizedtesting 2.4.0. 2016-10-21 11:14:37 +02:00
suggest LUCENE-7564: AnalyzingInfixSuggester should close its IndexWriter by default at the end of build() 2016-11-16 18:03:51 -05:00
test-framework LUCENE-7569: Fix index sorting test failures. 2016-11-24 14:10:19 +01:00
tools SOLR-9621: Remove several Guava & Apache Commons calls in favor of java 8 alternatives. 2016-10-28 17:18:58 -04:00
BUILD.txt
CHANGES.txt LUCENE-7570: don't run merges while holding the commitLock to prevent deadlock when merges are stalled and a tragic merge exception strikes 2016-12-09 18:41:30 -05:00
JRE_VERSION_MIGRATION.txt Update reference to Unicode version of Java 9 2016-02-21 16:55:20 +01:00
LICENSE.txt LUCENE-6732: Scan txt files in root folder, too. TODO: scan txt files everywhere 2015-08-13 09:53:44 +00:00
MIGRATE.txt LUCENE-7355: Add Analyzer#normalize() and use it in query parsers. 2016-07-12 16:33:07 +02:00
NOTICE.txt
README.txt
SYSTEM_REQUIREMENTS.txt
build.xml LUCENE-7543: Make changes-to-html target an offline operation, by moving the Lucene and Solr DOAP RDF files into the Git source repository under dev-tools/doap/ and then pulling release dates from those files, rather than from JIRA. 2016-11-21 16:47:54 -05:00
common-build.xml LUCENE-7543: Parse DOAP RDF files with Ant <xmlproperty> rather than Perl XML::Simple 2016-11-21 20:48:32 -05:00
default-nested-ivy-settings.xml LUCENE-7292: Use '-release' instead of '-source/-target' during compilation on Java 9+ to ensure real cross-compilation 2016-05-20 22:20:39 +02:00
ivy-ignore-conflicts.properties
ivy-versions.properties SOLR-9819: Upgrade Apache commons-fileupload to 1.3.2, fixing a security vulnerability 2016-12-02 12:14:35 -08:00
module-build.xml LUCENE-7015: Refactor spatial module to spatial-extras 2016-02-29 16:18:39 -06:00
top-level-ivy-settings.xml SOLR-9109: the ${settings.xml} is a file path, not a URL 2016-05-17 00:28:09 +02:00
version.properties Update master version to 7.0.0 2016-03-02 02:37:33 -06: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