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

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.