Jump to content

Apache Lucene

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Emmanuel.keller (talk | contribs) at 18:13, 18 November 2008 (See also). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Lucene
Developer(s)Apache Software Foundation
Stable release
2.4.0 / October 12, 2008 (2008-10-12)
Repository
Written inJava
Operating systemCross-platform
TypeSearch and index
LicenseApache License 2.0
Websitehttp://lucene.apache.org

Lucene is a free/open source information retrieval library, originally created in Java by Doug Cutting. It is supported by the Apache Software Foundation and is released under the Apache Software License.

Lucene has been ported to programming languages including Delphi, Perl, C#, C++, Python, Ruby and PHP.

Features and common use

While suitable for any application which requires full text indexing and searching capability, Lucene has been widely recognized for its utility in the implementation of Internet search engines and local, single-site searching.

At the core of Lucene's logical architecture is the idea of a document containing fields of text. This flexibility allows Lucene's API to be independent of file format. Text from PDFs, HTML, Microsoft Word documents, as well as many others can all be indexed so long as their textual information can be extracted.

Lucene-based projects

Lucene itself is just an indexing and search library and does not contain crawling and HTML parsing functionality. The Apache project Nutch is based on Lucene and provides this functionality; the Apache project Solr is a fully-featured search server based on Lucene; Compass is a Java Search Engine Framework built on top of Lucene.

References

  • Gospodnetic, Otis (2004). Lucene in Action. Manning Publications. ISBN 978-1-932394-28-3. {{cite book}}: Unknown parameter |coauthors= ignored (|author= suggested) (help)

See also