Man Page: plucene::document::field
Operating Environment: debian
Section: 3pm
Plucene::Document::Field(3pm) User Contributed Perl Documentation Plucene::Document::Field(3pm)NAMEPlucene::Document::Field - A field in a Plucene::DocumentSYNOPSISmy $field = Plucene::Document::Field->Keyword($name, $string); my $field = Plucene::Document::Field->Text($name, $string); my $field = Plucene::Document::Field->UnIndexded($name, $string); my $field = Plucene::Document::Field->UnStored($name, $string);DESCRIPTIONEach Plucene::Document is made up of Plucene::Document::Field objects. Each of these fields can be stored, indexed or tokenised.FIELDSname Returns the name of the field. string Returns the value of the field. is_stored Returns true if the field is or will be stored, or false if it was created with "UnStored". is_indexed Returns true if the field is or will be indexed, or false if it was created with "UnIndexed". is_tokenized Returns true if the field is or will be tokenized, or false if it was created with "UnIndexed" or "Keyword".METHODSKeyword my $field = Plucene::Document::Field->Keyword($name, $string); This will make a new Plucene::Document::Field object that is stored and indexed, but not tokenised. UnIndexed my $field = Plucene::Document::Field->UnIndexded($name, $string); This will make a new Plucene::Document::Field object that is stored, but not indexed or tokenised. Text my $field = Plucene::Document::Field->Text($name, $string); This will make a new Plucene::Document::Field object that is stored, indexed and tokenised. UnStored my $field = Plucene::Document::Field->UnStored($name, $string); This will make a new Plucene::Document::Field object that isn't stored, but is indexed and tokenised. perl v5.12.4 2011-08-14 Plucene::Document::Field(3pm)
| Related Man Pages |
|---|
| lucene::queryparser(3pm) - debian |
| plucene::document::field(3pm) - debian |
| plucene::index::reader(3pm) - debian |
| plucene::search::query(3pm) - debian |
| plucene::testcase(3pm) - debian |
| Similar Topics in the Unix Linux Community |
|---|
| Running Total |
| Format problems with fields |
| Combining columns from different files |
| Field Number read and "wc -l" |
| Sort based on Multiple Columns in UNIX |