Implements interfaces:
Holds Key / Value pairs that represent a Solr Document along with any associated boost values. Field values can be accessed by direct dereferencing such as:
$document->title = 'Something'; echo $document->title; ... </code>
Additionally, the field values can be iterated with foreach
Located in /Document.php (line 58)
Add a value to a multi-valued field
NOTE: the solr XML format allows you to specify boosts PER value even though the underlying Lucene implementation only allows a boost per field. To remedy this, the final field boost value will be the product of all specified boosts on field values - this is similar to SolrJ's functionality.
Get the currently set field boost for a document field
Return current field boosts, indexed by field name
IteratorAggregate implementation function. Allows usage:
Set document boost factor
Set a field value. Multi-valued fields should be set as arrays or instead use the addField(...) function which will automatically make sure the field is an array.
Set the field boost for a document field
Handle the array manipulation for a multi-valued field
Magic isset for fields values. Do not call directly. Allows usage:
Magic set for field values. Multi-valued fields should be set as arrays or instead use the addField(...) function which will automatically make sure the field is an array.
Magic unset for field values. Do not call directly. Allows usage:
Documentation generated on Wed, 04 May 2011 11:01:13 -0400 by phpDocumentor 1.4.3