The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module: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::Simple - An interface to Plucene River stage one • 3 direct dependents • 6 total dependents

This provides a simple interface to Plucene. Plucene is large and multi-featured, and it expected that users will subclass it, and tie all the pieces together to suit their own needs. Plucene::Simple is, therefore, just one way to use Plucene. It's n...

STRYTOAST/PluceneSimple-1.04 - 17 Mar 2004 14:42:16 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::SearchEngine - Perl extension for blah blah blah River stage one • 3 direct dependents • 3 total dependents

Stub documentation for Plucene::SearchEngine, created by h2xs. It looks like the author of the extension was negligent enough to leave the stub unedited. Blah blah blah. EXPORT None by default....

SIMON/Plucene-SearchEngine-1.1 - 19 Aug 2004 10:03:18 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::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::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::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

Kwiki::Search::Plucene - Plucene powered Kwiki search engine River stage zero No dependents

This plugin is intend to be an alternative of Kwiki::Search, which use a simple 'grep' upon search, and will be slow after the number of pages grow larger and larger. It use Plucene::Simple to index page content upon saving. Plucene is a Perl port of...

GUGOD/Kwiki-Search-Plucene-0.03 - 09 Feb 2005 10:19:57 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

Catalyst::Model::Plucene - Plucene Model Class River stage zero No dependents

This is the "Plucene" model class. new Sets path from model config. Defaults to /tmp/index...

MRAMBERG/Catalyst-Model-Plucene-0.02 - 15 Apr 2005 16:54:57 UTC
97 results (0.019 seconds)