Stray Taoist > Plucene-1.0 > Plucene::Index::TermInfo

Download:
Plucene-1.0.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  12
Open  4
View Bugs
Report a bug
Source   Latest Release: Plucene-1.25

NAME ^

Plucene::Index::TermInfo - Information on an index term

SYNOPSIS ^

        my $term_info = Plucene::Index::TermInfo->new({
                        doc_freq     => $doc_freq,
                        freq_pointer => $freq_pointer,
                        prox_pointer => $prox_pointer,
        });

DESCRIPTION ^

This class holds information about an index term.

METHODS ^

doc_freq / freq_pointer / prox_pointer

Get / set term info.

copy_in

        $term_info1->copy_in($term_info2);

This will make $term_info1 be the same as $term_info2.