Search::Xapian::Weight - base class for Weighting schemes.


Search-Xapian documentation Contained in the Search-Xapian distribution.

Index


Code Index:

NAME

Top

Search::Xapian::Weight - base class for Weighting schemes.

DESCRIPTION

Top

This is an abstract base class for weighting schemes in Xapian.

SEE ALSO

Top

Search::Xapian,Search::Xapian::BoolWeight,Search::Xapian::BM25Weight


Search-Xapian documentation Contained in the Search-Xapian distribution.

package Search::Xapian::Weight;

use 5.006;
use strict;
use warnings;

# In a new thread, copy objects of this class to unblessed, undef values.
sub CLONE_SKIP { 1 }

1;

__END__