• NAME
  • SYNOPSIS
  • DESCRIPTION
  • INHERITANCE
  • COPYRIGHT
  • LICENSE, DISCLAIMER, BUGS, etc.

NAME

KinoSearch::Posting::MatchPosting - Match but not score documents.

SYNOPSIS

    # MatchPosting is used indirectly, by specifying in FieldSpec subclass.
    package MySchema::Category;
    use base qw( KinoSearch::FieldSpec::TextField );
    sub posting {
        my $self = shift;
        return KinoSearch::Posting::MatchPosting->new(@_);
    }

DESCRIPTION

TODO: This class is not yet fully implemented.

Use MatchPosting for fields which only need to be matched, not scored. For instance, if you need to determine that that a query matches a particular category, but don't want the match to contribute to the document score, use MatchPosting for the field.

INHERITANCE

KinoSearch::Posting::MatchPosting isa KinoSearch::Posting isa KinoSearch::Util::Stepper isa KinoSearch::Obj::FastObj isa KinoSearch::Obj.

COPYRIGHT

Copyright 2005-2008 Marvin Humphrey

LICENSE, DISCLAIMER, BUGS, etc.

See KinoSearch version 0.20.

Copyright © 2004-2008 Marvin Humphrey