Important Lucene classes
- IndexWriter: Creates new indexes and adds documents to existing indexes. This class combines the corpus and the index concepts.
- Analyzer: Extracts indexable tokens out of text to be indexed, and eliminating the rest. Lucene comes with several Analyzers that can remove stop words and convert text to lowercase.
- Document: Basic indexing block.
- Field: Describes important features of a document.