Plucene::Index::FieldsWriter.3pm

Langue: en

Autres versions - même langue

Version: 2005-09-05 (ubuntu - 08/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

Plucene::Index::FieldsWriter - writes Fields to a Document

SYNOPSIS

         my $writer = Plucene::Index::FieldsWriter->new(
                 $dir_name, $segment, $field_infos);
 
         $writer->add_document(Plucene::Document $doc);
 
 

DESCRIPTION

This class add documents to the appropriate files.

METHODS


new

         my $writer = Plucene::Index::FieldsWriter->new(
                 $dir_name, $segment, $field_infos);
 
 

This will create a new Plucene::Index::FieldsWriter object with the passed directory name, segment and field infos.

close

         $writer->close;
 
 

add_document

         $writer->add_document(Plucene::Document $doc);
 
 

This will add the passed Plucene::Document.