Apache Lucene.Net 4.8.0-beta00014 Documentation
Lucene is a .NET full-text search engine. Lucene.NET is not a complete application, but rather a code library and API that can easily be used to add search capabilities to applications.
This is the official API documentation for Apache Lucene.NET 4.8.0-beta00014.
Getting Started
The following section is intended as a "getting started" guide. It has three audiences: first-time users looking to install Apache Lucene in their application; developers looking to modify or base the applications they develop on Lucene; and developers looking to become involved in and contribute to the development of Lucene. The goal is to help you "get started". It does not go into great depth on some of the conceptual or inner details of Lucene:
- Lucene demo, its usage, and sources: Tutorial and walk-through of the command-line Lucene demo.
- Introduction to Lucene's APIs: High-level summary of the different Lucene packages.
- Analysis overview: Introduction to Lucene's analysis API. See also the TokenStream consumer workflow.
Reference Documents
- Changes: List of changes in this release.
- Migration Guide: What changed in Lucene 4; how to migrate code from Lucene 3.x.
- File Formats : Guide to the supported index format used by Lucene. This can be customized by using an alternate codec.
- Search and Scoring in Lucene: Introduction to how Lucene scores documents.
- Classic Scoring Formula: Formula of Lucene's classic Vector Space implementation. (look here for other models)
- Classic QueryParser Syntax: Overview of the Classic QueryParser's syntax and features.
Libraries
- Lucene.Net - Core library
- Lucene.Net.Analysis.Common - Analyzers for indexing content in different languages and domains
- Lucene.Net.Analysis.Kuromoji - Japanese Morphological Analyzer
- Lucene.Net.Analysis.Morfologik - Analyzer for dictionary stemming, built-in Polish dictionary
- Lucene.Net.Analysis.OpenNLP - OpenNLP Library Integration
- Lucene.Net.Analysis.Phonetic - Analyzer for indexing phonetic signatures (for sounds-alike search)
- Lucene.Net.Analysis.SmartCn - Analyzer for indexing Chinese
- Lucene.Net.Analysis.Stempel - Analyzer for indexing Polish
- Lucene.Net.Benchmark - System for benchmarking Lucene
- Lucene.Net.Classification - Classification module for Lucene
- Lucene.Net.Codecs - Lucene codecs and postings formats
- Lucene.Net.Expressions - Dynamically computed values to sort/facet/search on based on a pluggable grammar
- Lucene.Net.Facet - Faceted indexing and search capabilities
- Lucene.Net.Grouping - Collectors for grouping search results
- Lucene.Net.Highlighter - Highlights search keywords in results
- Lucene.Net.ICU - Specialized ICU (International Components for Unicode) Analyzers and Highlighters
- Lucene.Net.Join - Index-time and Query-time joins for normalized content
- Lucene.Net.Memory - Single-document in-memory index implementation
- Lucene.Net.Misc - Index tools and other miscellaneous code
- Lucene.Net.Queries - Filters and Queries that add to core Lucene
- Lucene.Net.QueryParser - Text to Query parsers and parsing framework
- Lucene.Net.Replicator - Files replication utility
- Lucene.Net.Sandbox - Various third party contributions and new ideas
- Lucene.Net.Spatial - Geospatial search
- Lucene.Net.Suggest - Auto-suggest and Spell-checking support
- Lucene.Net.TestFramework - Framework for testing Lucene-based applications
Tools
- Lucene CLI: Dotnet tool to work with Lucene indexes from the command line
- Demo: Simple example code