You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2020/02/12 22:27:07 UTC

[lucene-site] branch master updated: LUCENE-8987: Add features.html to new website

This is an automated email from the ASF dual-hosted git repository.

janhoy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-site.git


The following commit(s) were added to refs/heads/master by this push:
     new bd3aa3a  LUCENE-8987: Add features.html to new website
bd3aa3a is described below

commit bd3aa3a00c274c13d108862aa701b2cac2dae720
Author: Jan Høydahl <ja...@cominvent.com>
AuthorDate: Wed Feb 12 23:22:12 2020 +0100

    LUCENE-8987: Add features.html to new website
---
 content/pages/core/features.md | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/content/pages/core/features.md b/content/pages/core/features.md
new file mode 100644
index 0000000..31fc81b
--- /dev/null
+++ b/content/pages/core/features.md
@@ -0,0 +1,32 @@
+Title: Lucene<span style="vertical-align: super; font-size: xx-small">TM</span> Features
+URL: core/features.html
+save_as: core/features.html
+template: lucene/core/page
+
+Lucene offers powerful features through a simple API:
+
+## Scalable, High-Performance Indexing
+
+* over [150GB/hour on modern hardware](http://home.apache.org/~mikemccand/lucenebench/indexing.html)
+* small RAM requirements -- only 1MB heap
+* incremental indexing as fast as batch indexing
+* index size roughly 20-30% the size of text indexed
+
+## Powerful, Accurate and Efficient Search Algorithms
+
+* ranked searching -- best results returned first
+* many powerful query types: phrase queries, wildcard queries, proximity queries, range queries and more
+* fielded searching (e.g. title, author, contents)
+* sorting by any field
+* multiple-index searching with merged results
+* allows simultaneous update and searching
+* flexible faceting, highlighting, joins and result grouping
+* fast, memory-efficient and typo-tolerant suggesters
+* pluggable ranking models, including the [Vector Space Model](http://en.wikipedia.org/wiki/Vector_Space_Model) and [Okapi BM25](http://en.wikipedia.org/wiki/Okapi_BM25)
+* configurable storage engine (codecs)
+
+## Cross-Platform Solution
+
+* Available as Open Source software under the [Apache License](https://www.apache.org/licenses/LICENSE-2.0.html) which lets you use Lucene in both commercial and Open Source programs
+* 100%-pure Java
+* Implementations in [other programming languages available](https://cwiki.apache.org/confluence/display/lucene/LuceneImplementations) that are index-compatible
\ No newline at end of file