Marvin Humphrey > KinoSearch-0.30_04 > KinoSearch::Doc

Download:
KinoSearch-0.30_04.tar.gz

Annotate this POD

CPAN RT

Open  7
View Bugs
Report a bug
Source   Latest Release: KinoSearch-0.30_07

NAME ^

KinoSearch::Doc - A document.

SYNOPSIS ^

    my $doc = KinoSearch::Doc->new(
        fields => { foo => 'foo foo', bar => 'bar bar' },
    );
    $doc->{foo} = 'new value for field "foo"';
    $indexer->add_doc($doc);

DESCRIPTION ^

A Doc object is akin to a row in a database, in that it is made up of one or more fields, each of which has a value.

CONSTRUCTORS ^

new( [labeled params] )

    my $doc = KinoSearch::Doc->new(
        fields => { foo => 'foo foo', bar => 'bar bar' },
    );

METHODS ^

get_fields()

Return the Doc's backing fields hash.

INHERITANCE ^

KinoSearch::Doc isa KinoSearch::Obj.

COPYRIGHT ^

Copyright 2005-2009 Marvin Humphrey

LICENSE, DISCLAIMER, BUGS, etc. ^

See KinoSearch version 0.30.