lucene/lucene
Simon Willnauer 1a84b76403 LUCENE-5146: AnalyzingSuggester sort order doesn't respect the actual weight
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1508382 13f79535-47bb-0310-9956-ffa450edef68
2013-07-30 10:45:38 +00:00
..
analysis LUCENE-5138: remove executable attr from java files 2013-07-26 13:51:38 +00:00
backwards LUCENE-3753: Restructure the Lucene build system 2012-02-07 19:59:05 +00:00
benchmark LUCENE-5138: remove executable attr from java files 2013-07-26 13:51:38 +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-5127: FixedGapTermsIndex should use monotonic compression 2013-07-29 17:34:52 +00:00
core LUCENE-5127: FixedGapTermsIndex should use monotonic compression 2013-07-29 17:34:52 +00:00
demo LUCENE-4985: Make it easier to mix different kinds of FacetRequests 2013-07-29 13:07:30 +00:00
facet remove TODO 2013-07-29 18:54:33 +00:00
grouping LUCENE-5114: remove unused useCache param 2013-07-16 17:44:10 +00:00
highlighter LUCENE-5138: remove executable attr from java files 2013-07-26 13:51:38 +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 LUCENE-5138: remove executable attr from java files 2013-07-26 13:51:38 +00:00
queryparser LUCENE-4335: commit current patch 2013-07-23 19:32:17 +00:00
replicator LUCENE-4876: don't clone IndexWriterConfig by IndexWriter; prevent config from being shared with multiple writers 2013-07-27 19:01:04 +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 Add tradmmark signs in generated documentation pages for Lucene and Solr 2013-07-26 09:00:27 +00:00
spatial spatial- some comments on ideas to improve performance 2013-07-26 03:29:40 +00:00
suggest LUCENE-5146: AnalyzingSuggester sort order doesn't respect the actual weight 2013-07-30 10:45:38 +00:00
test-framework evil up this test a bit 2013-07-29 18:23:29 +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-5146: AnalyzingSuggester sort order doesn't respect the actual weight 2013-07-30 10:45:38 +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 recurse into 'very special modules' too 2013-07-23 20:47:17 +00:00
common-build.xml LUCENE-4335: Make moman not use HG anymore. Just download as ZIP from bitbucket and unzip 2013-07-24 12:49:04 +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