| Search-Odeum documentation | Contained in the Search-Odeum distribution. |
Search::Odeum::Document - Perl interface to the Odeum inverted index API.
use Search::Odeum;
my $doc = Search::Odeum::Document->new('http://www.example.com/');
Search::Odeum::Document represents a Odeum document data structure.
Create new Search::Odeum::Document instance. $uri specifies the URI of a document.
set or get an attribute to a document. $key specifies the name of an attribute. $value specifies the value of attribute. if $valuve is omitted the stored attribute value will be returned.
add a word to the document. $noraml specifies the noramlized form of word. $asis specifies the appearance form of word. Search::Odeum does not provide the method to extract words from text and normalize it.
get the ID of document.
get the URI of document.
http://qdbm.sourceforge.net/
Tomohiro IKEBE, <ikebe@shebang.jp>
Copyright (C) 2007 by Tomohiro IKEBE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
| Search-Odeum documentation | Contained in the Search-Odeum distribution. |
package Search::Odeum::Document; use strict; sub new { my($class, $uri) = @_; $class->xs_new($uri); } sub attr { my($class, $key, $value) = @_; if (defined $value) { $class->addattr($key, $value); } $class->getattr($key); } 1; __END__