blob: dfed1b7a1aa5e6bb076447939f137000a73c9e58 [file] [log] [blame]
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Lucene.Net Docs - The documentation website for Lucene.Net | Apache Lucene.NET 4.8.0-beta00010 Documentation </title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Lucene.Net Docs - The documentation website for Lucene.Net | Apache Lucene.NET 4.8.0-beta00010 Documentation ">
<meta name="generator" content="docfx 2.56.0.0">
<link rel="shortcut icon" href="logo/favicon.ico">
<link rel="stylesheet" href="styles/docfx.vendor.css">
<link rel="stylesheet" href="styles/docfx.css">
<link rel="stylesheet" href="styles/main.css">
<meta property="docfx:navrel" content="toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<img id="logo" class="svg" src="logo/lucene-net-color.png" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list"></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="article row grid">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="">
<h1 id="apache-lucenenet-480-beta00010-documentation">Apache Lucene.Net 4.8.0-beta00010 Documentation</h1>
<hr>
<p>Lucene is a <em>.NET full-text search engine</em>. 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.</p>
<p>This is the official API documentation for <strong>Apache Lucene.NET 4.8.0-beta00010</strong>.</p>
<h2 id="getting-started">Getting Started</h2>
<p>The following section is intended as a &quot;getting started&quot; 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 &quot;get started&quot;. It does not go into great depth
on some of the conceptual or inner details of Lucene:</p>
<ul>
<li><a class="xref" href="http://localhost:8080/api/demo/Lucene.Net.Demo.html">Lucene demo, its usage, and sources</a>: Tutorial and walk-through of the command-line Lucene demo.</li>
<li><a class="xref" href="http://localhost:8080/api/core/overview.html">Introduction to Lucene&#39;s APIs</a>: High-level summary of the different Lucene packages.</li>
<li><a class="xref" href="http://localhost:8080/api/core/Lucene.Net.Analysis.html">Analysis overview</a>: Introduction to Lucene&#39;s analysis API. See also the <a class="xref" href="http://localhost:8080/api/core/Lucene.Net.Analysis.TokenStream.html">TokenStream consumer workflow</a>.</li>
</ul>
<h2 id="reference-documents">Reference Documents</h2>
<ul>
<li><a href="https://github.com/apache/lucenenet/releases/tag/Lucene.Net_4_8_0_beta00010">Changes</a>: List of changes in this release.</li>
<li>System Requirements: Minimum and supported .NET versions. <strong>TODO: Add link</strong></li>
<li>Migration Guide: What changed in Lucene 4; how to migrate code from Lucene 3.x. <strong>TODO: Add link</strong></li>
<li><a class="xref" href="http://localhost:8080/api/core/Lucene.Net.Codecs.Lucene46.html">File Formats</a> : Guide to the supported index format used by Lucene. This can be customized by using <a class="xref" href="http://localhost:8080/api/core/Lucene.Net.Codecs.html">an alternate codec</a>.</li>
<li><a class="xref" href="http://localhost:8080/api/core/Lucene.Net.Search.html">Search and Scoring in Lucene</a>: Introduction to how Lucene scores documents.</li>
<li><a class="xref" href="http://localhost:8080/api/core/Lucene.Net.Search.Similarities.TFIDFSimilarity.html">Classic Scoring Formula</a>: Formula of Lucene&#39;s classic <a href="http://en.wikipedia.org/wiki/Vector_Space_Model">Vector Space</a> implementation. (look <a class="xref" href="http://localhost:8080/api/core/Lucene.Net.Search.Similarities.html">here</a> for other models)</li>
<li><a class="xref" href="http://localhost:8080/api/queryparser/Lucene.Net.QueryParsers.Classic.html">Classic QueryParser Syntax</a>: Overview of the Classic QueryParser&#39;s syntax and features.</li>
</ul>
<h2 id="libraries">Libraries</h2>
<ul>
<li><a class="xref" href="http://localhost:8080/api/core/overview.html">Lucene.Net</a> - Core library</li>
<li><a class="xref" href="http://localhost:8080/api/analysis-common/overview.html">Lucene.Net.Analysis.Common</a> - Analyzers for indexing content in different languages and domains</li>
<li><a class="xref" href="http://localhost:8080/api/analysis-kuromoji/Lucene.Net.Analysis.Ja.html">Lucene.Net.Analysis.Kuromoji</a> - Japanese Morphological Analyzer</li>
<li><a class="xref" href="http://localhost:8080/api/analysis-morfologik/Lucene.Net.Analysis.Morfologik.html">Lucene.Net.Analysis.Morfologik</a> - Analyzer for dictionary stemming, built-in Polish dictionary</li>
<li><a class="xref" href="http://localhost:8080/api/analysis-opennlp/Lucene.Net.Analysis.OpenNlp.html">Lucene.Net.Analysis.OpenNlp</a> - OpenNLP Library Integration</li>
<li><a class="xref" href="http://localhost:8080/api/analysis-phonetic/Lucene.Net.Analysis.Phonetic.html">Lucene.Net.Analysis.Phonetic</a> - Analyzer for indexing phonetic signatures (for sounds-alike search)</li>
<li><a class="xref" href="http://localhost:8080/api/analysis-smartcn/Lucene.Net.Analysis.Cn.Smart.html">Lucene.Net.Analysis.SmartCn</a> - Analyzer for indexing Chinese</li>
<li><a class="xref" href="http://localhost:8080/api/analysis-stempel/Lucene.Net.Analysis.Stempel.html">Lucene.Net.Analysis.Stempel</a> - Analyzer for indexing Polish</li>
<li><a class="xref" href="http://localhost:8080/api/benchmark/Lucene.Net.Benchmarks.html">Lucene.Net.Benchmark</a> - System for benchmarking Lucene</li>
<li><a class="xref" href="http://localhost:8080/api/classification/Lucene.Net.Classification.html">Lucene.Net.Classification</a> - Classification module for Lucene</li>
<li><a class="xref" href="http://localhost:8080/api/core/Lucene.Net.Codecs.html">Lucene.Net.Codecs</a> - Lucene codecs and postings formats</li>
<li><a class="xref" href="http://localhost:8080/api/expressions/overview.html">Lucene.Net.Expressions</a> - Dynamically computed values to sort/facet/search on based on a pluggable grammar</li>
<li><a class="xref" href="http://localhost:8080/api/facet/package.html">Lucene.Net.Facet</a> - Faceted indexing and search capabilities</li>
<li><a class="xref" href="http://localhost:8080/api/grouping/package.html">Lucene.Net.Grouping</a> - Collectors for grouping search results</li>
<li><a class="xref" href="http://localhost:8080/api/highlighter/Lucene.Net.Search.Highlight.html">Lucene.Net.Search.Highlight</a> - Highlights search keywords in results</li>
<li><a class="xref" href="http://localhost:8080/api/icu/Lucene.Net.Analysis.Icu.html">Lucene.Net.Analysis.Icu</a> - Specialized ICU (International Components for Unicode) Analyzers and Highlighters</li>
<li><a class="xref" href="http://localhost:8080/api/join/Lucene.Net.Join.html">Lucene.Net.Join</a> - Index-time and Query-time joins for normalized content</li>
<li><a class="xref" href="http://localhost:8080/api/memory/Lucene.Net.Index.Memory.html">Lucene.Net.Memory</a> - Single-document in-memory index implementation</li>
<li><a class="xref" href="http://localhost:8080/api/misc/Lucene.Net.Misc.html">Lucene.Net.Misc</a> - Index tools and other miscellaneous code</li>
<li><a class="xref" href="http://localhost:8080/api/queries/Lucene.Net.Queries.html">Lucene.Net.Queries</a> - Filters and Queries that add to core Lucene</li>
<li><a class="xref" href="http://localhost:8080/api/queryparser/overview.html">Lucene.Net.QueryParser</a> - Text to Query parsers and parsing framework</li>
<li><a class="xref" href="http://localhost:8080/api/replicator/Lucene.Net.Replicator.html">Lucene.Net.Replicator</a> Files replication utility</li>
<li><a class="xref" href="http://localhost:8080/api/sandbox/overview.html">Lucene.Net.Sandbox</a> - Various third party contributions and new ideas</li>
<li><a class="xref" href="http://localhost:8080/api/spatial/Lucene.Net.Spatial.html">Lucene.Net.Spatial</a> - Geospatial search</li>
<li><a class="xref" href="http://localhost:8080/api/suggest/overview.html">Lucene.Net.Suggest</a> - Auto-suggest and Spell-checking support</li>
<li><a class="xref" href="http://localhost:8080/api/test-framework/overview.html">Lucene.Net.TestFramework</a> - Framework for testing Lucene-based applications</li>
</ul>
<h3 id="tools">Tools</h3>
<ul>
<li><a href="cli/index.html">Lucene CLI</a>: Dotnet tool to work with Lucene indexes from the command line</li>
<li><a class="xref" href="http://localhost:8080/api/demo/Lucene.Net.Demo.html">Demo</a>: Simple example code</li>
</ul>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/apache/lucenenet/blob/docs/4.8.0-beta00010/websites/apidocs/index.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
Copyright © 2020 Licensed to the Apache Software Foundation (ASF)
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="styles/docfx.vendor.js"></script>
<script type="text/javascript" src="styles/docfx.js"></script>
<script type="text/javascript" src="styles/main.js"></script>
</body>
</html>