WebService::Solr::Document
A document object
- Provided by: libwebservice-solr-perl (Version: 0.23-1)
- Report a bug
A document object
my $doc = WebService::Solr::Document->new;
$doc->add_fields( @fields );
$doc->boost( 2.0 );
my $id = $doc->value_for( 'id' );
my @subjects = $doc->values_for( 'subject' );
This class represents a basic document object, which is basically a collection of fields.
Constructs a new document object given @fields. A field can be a WebService::Solr::Field object, or a structure accepted by "WebService::Solr::Field->new".
A Moose override to allow our custom constructor.
Adds @fields to the document.
Returns a list of field names that are in this document.
Returns the first value for $name.
Returns all values for $name.
Serializes the object to an XML::Easy::Element object.
Serializes the object to xml.
Brian Cassidy <bricas@cpan.org>
Kirk Beers
Copyright 2008-2013 National Adult Literacy Database
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.