WebService::Solr::Field - A field object
Contents
Accessors
• name - the field's name
• value - the field's value
• boost - a floating-point boost value
Copyright And License
Copyright 2008-2014 National Adult Literacy Database Copyright 2015-2020 Andy Lester
This library is free software; you can redistribute it and/or modify it under the same terms as Perl
itself.
perl v5.36.0 2022-10-16 WebService::Solr::Field(3pm)
Description
This class represents a field from a document, which is basically a name-value pair.
Methods
new($name=>$value,\%options)
Creates a new field object. Currently, the only option available is a "boost" value.
BUILDARGS(@args)
A Moo override to allow our custom constructor.
to_element()
Serializes the object to an XML::Easy::Element object.
to_xml()
Serializes the object to xml.
Name
WebService::Solr::Field - A field object
Synopsis
my $field = WebService::Solr::Field->new( foo => 'bar' );
