logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Description

       This class holds information about an index term.

Methods

doc_freq/freq_pointer/prox_pointer
       Get / set term info.

   copy_in/clone
               $term_info1->copy_in($term_info2);

               my $term_info1 = $term_info2->clone;

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

perl v5.36.0                                       2022-12-04                      Plucene::Index::TermInfo(3pm)

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,
               });

See Also