lucene/modules/analysis
Chris M. Hostetter 3ed5106920 SOLR-2819: Improved speed of parsing hex entities in HTMLStripCharFilter
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1208032 13f79535-47bb-0310-9956-ffa450edef68
2011-11-29 19:15:54 +00:00
..
common SOLR-2819: Improved speed of parsing hex entities in HTMLStripCharFilter 2011-11-29 19:15:54 +00:00
icu LUCENE-3490: restructure codec hierarchy 2011-11-04 15:43:35 +00:00
morfologik LUCENE-3455: Renamed Analyzer.reusableTokenStream to Analyzer.tokenStream 2011-09-28 05:26:54 +00:00
phonetic SOLR-2276: Support for cologne phonetic 2011-10-30 01:00:06 +00:00
smartcn LUCENE-2564: Cut over WordListLoader to CharArrayMap/Set and use CharSetDecoder to detect encoding problems early 2011-11-10 01:52:48 +00:00
stempel LUCENE-2564: Cut over WordListLoader to CharArrayMap/Set and use CharSetDecoder to detect encoding problems early 2011-11-10 01:21:25 +00:00
CHANGES.txt LUCENE-3434: Removed state changing setters in ShingleAnalyzerWrapper and PerFieldAnalyzerWrapper 2011-09-15 03:21:17 +00:00
LICENSE.txt LUCENE-2341: integrating morfologik (Polish stemming/ morphosyntactic dictionary) as an analysis module. 2011-06-30 19:12:54 +00:00
NOTICE.txt LUCENE-2341: integrating morfologik (Polish stemming/ morphosyntactic dictionary) as an analysis module. 2011-06-30 19:12:54 +00:00
README.txt LUCENE-2341: integrating morfologik (Polish stemming/ morphosyntactic dictionary) as an analysis module. 2011-06-30 19:12:54 +00:00
build.xml LUCENE-2341: integrating morfologik (Polish stemming/ morphosyntactic dictionary) as an analysis module. 2011-06-30 19:12:54 +00:00

README.txt

Analysis README file

INTRODUCTION

The Analysis Module provides analysis capabilities to Lucene and Solr
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

lucene-analyzers-common-XX.jar
  The primary analysis module library, containing general-purpose analysis
  components and support for various languages.

lucene-analyzers-icu-XX.jar
  An add-on analysis library that provides improved Unicode support via
  International Components for Unicode (ICU). Note: this module depends on
  the ICU4j jar file (version >= 4.6.0)

lucene-analyzers-phonetic-XX.jar
  An add-on analysis library that provides phonetic encoders via Apache
  Commons-Codec. Note: this module depends on the commons-codec jar 
  file (version >= 1.4)
  
lucene-analyzers-smartcn-XX.jar
  An add-on analysis library that provides word segmentation for Simplified
  Chinese.

lucene-analyzers-stempel-XX.jar
  An add-on analysis library that contains a universal algorithmic stemmer,
  including tables for the Polish language.

lucene-analyzers-morfologik-XX.jar
  An analyzer using the Morfologik stemming library.

common/src/java
icu/src/java
phonetic/src/java
smartcn/src/java
stempel/src/java
morfologik/src/java
  The source code for the ffve libraries.

common/src/test
icu/src/test
phonetic/src/test
smartcn/src/test
stempel/src/test
morfologik/src/test
  Unit tests for the five libraries.