Plucene::Index::TermInfosWriter - write to the term infos file


Plucene documentation  | view source Contained in the Plucene distribution.

Index


NAME

Top

Plucene::Index::TermInfosWriter - write to the term infos file

SYNOPSIS

Top

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

	$writer->add(Plucene::Index::Term $term, 
			Plucene::Index::TermInfo $term_info);

	$writer->write_term(Plucene::Index::Term $term);

DESCRIPTION

Top

This will allow for the writing and adding to a term infos file for a particular segment. It also writes the term infos index.

METHODS

Top

new

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

This will create a new Plucene::Index::TermInfosWriter object.

break_ref

This will break a circular reference.

add

	$writer->add(Plucene::Index::Term $term, 
			Plucene::Index::TermInfo $term_info);

This will add the term and term info to the term infos file.

write_term

	$writer->write_term(Plucene::Index::Term $term);

This will write the term to the term infos file.


Plucene documentation  | view source Contained in the Plucene distribution.