The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "distribution:Plucene Plucene"

Plucene - A Perl port of the Lucene search engine River stage two • 6 direct dependents • 19 total dependents

Plucene is a fully-featured and highly customizable search engine toolkit based on the Lucene API. (<http://jakarta.apache.org/lucene>) It is not, in and of itself, a functional search engine - you are expected to subclass and tie all the pieces toge...

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Utils - Utility class for Plucene River stage two • 6 direct dependents • 19 total dependents

Utilities to help with Plucene....

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::TestCase - Handy functions when testing Plucene River stage two • 6 direct dependents • 19 total dependents

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Document - The unit of indexing and searching River stage two • 6 direct dependents • 19 total dependents

Documents are the unit of indexing and search, and each document is a set of fields. Each field has a name and a textual value. A field may be stored with the document, in which case it is returned with search hits on the document. Thus each document...

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Bitvector - a vector of bits River stage two • 6 direct dependents • 19 total dependents

A serialisable implementation of a vector of bits. This subclass of Bit::Vector::Minimal allows the writing (and reading) of vectors to (and from) a Plucene stream....

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::QueryParser - Turn query strings into Plucene::Search::Query objects River stage two • 6 direct dependents • 19 total dependents

This module is responsible for turning a query string into a Plucene::Query object. It needs to have an Analyzer object to help it tokenize incoming queries, and it also needs to know the default field to be used if no field is given in the query str...

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Index::Term - a word from text River stage two • 6 direct dependents • 19 total dependents

A Term represents a word from text, and is the unit of search. It is composed of two elements, the text of the word, as a string, and the name of the field that the text occured in, as a string. Note that terms may represent more than words from text...

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Search::Hits - A list of ranked documents River stage two • 6 direct dependents • 19 total dependents

This is a list of ranked documents, used to hold search results....

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Index::Writer - write an index. River stage two • 6 direct dependents • 19 total dependents

This is the writer class. If an index will not have more documents added for a while and optimal search performance is desired, then the "optimize" method should be called before the index is closed....

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Index::Reader - Abstract class for accessing an index River stage two • 6 direct dependents • 19 total dependents

IndexReader is an abstract class, providing an interface for accessing an index. Search of an index is done entirely through this abstract interface, so that any subclass which implements it is searchable. Concrete subclasses of IndexReader are usual...

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Search::Query - base class for queries River stage two • 6 direct dependents • 19 total dependents

This is an abstract base class for queries. A query is a specification of the content an properties of the desired documents. Every search is done by matching a query against the document index and locating the ones that match the query. The simplest...

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Search::Filter - A search filter base class River stage two • 6 direct dependents • 19 total dependents

This doesn't seem to be being used just yet. But here is some info on filters: Filtering means imposing additional restriction on the hit list to eliminate hits that otherwise would be included in the search results. There are two ways to filter hits...

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Search::Scorer - base class for scorers River stage two • 6 direct dependents • 19 total dependents

Abstract base class for scoring....

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Index::TermInfo - Information on an index term River stage two • 6 direct dependents • 19 total dependents

This class holds information about an index term....

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Analysis::Token - A term in a field River stage two • 6 direct dependents • 19 total dependents

A Token is an occurence of a term from the text of a field. It consists of a term's text, the start and end offset of the term in the text of the field, and a type string. The start and end offsets permit applications to re-associate a token with its...

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Document::Field - A field in a Plucene::Document River stage two • 6 direct dependents • 19 total dependents

Each Plucene::Document is made up of Plucene::Document::Field objects. Each of these fields can be stored, indexed or tokenised....

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Search::TopDocs - The top hits for a query River stage two • 6 direct dependents • 19 total dependents

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Search::Searcher - base class for searchers River stage two • 6 direct dependents • 19 total dependents

Abstract base class for searchers. Searching is the operation of locating a subset of the documents that contains desired content or that their attributes match some specification. The input for a search operation is a 'query' that specifies a criter...

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Search::TermQuery - a query that contains a term River stage two • 6 direct dependents • 19 total dependents

A query that matches a document containing a term. Term query are the simplest possible Plucene queries and are used to match a single word. Term queries are represented by instances of the TermQuery class and contain the desired term (word) and a fi...

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC

Plucene::Index::FieldInfos - a collection of FieldInfo objects River stage two • 6 direct dependents • 19 total dependents

This is a collection of field info objects, which happen to live in the field infos file....

TMTM/Plucene-1.25 - 26 Aug 2006 19:25:08 UTC
69 results (0.028 seconds)