Apache-Solr

 view release on metacpan or  search on metacpan

lib/Apache/Solr/JSON.pod  view on Meta::CPAN

=encoding utf8

=head1 NAME

Apache::Solr::JSON - Apache Solr (Lucene) client via JSON

=head1 INHERITANCE

 Apache::Solr::JSON
   is an Apache::Solr

=head1 SYNOPSIS

  my $solr = Apache::Solr::JSON->new(...);
  my $solr = Apache::Solr->new(format => 'JSON', ...);

=head1 DESCRIPTION

Implement the Solr client, where the communication is in JSON.

Both the requests and the responses are using JSON syntax, produced by
the JSON distribution (which defaults to JSON::XS when installed)

B<Warning 1:>
Apparently, Perl's JSON implementation does not support the repetition
of keys in one list, but Solr is using that.  Care is taken to avoid
these cases.

B<Warning 2:>
In some cases, XML and JSON differ in structure and names in the structure.
In those cases, the XML plan is made leading: the JSON data is transformed
to match the XML.

Extends L<"DESCRIPTION" in Apache::Solr|Apache::Solr/"DESCRIPTION">.

=head1 METHODS

Extends L<"METHODS" in Apache::Solr|Apache::Solr/"METHODS">.

=head2 Constructors

Extends L<"Constructors" in Apache::Solr|Apache::Solr/"Constructors">.

=over 4

=item $class-E<gt>B<new>(%options)

Inherited, see L<Apache::Solr/"Constructors">

 -Option            --Defined in     --Default
  agent               Apache::Solr     <created internally>
  autocommit          Apache::Solr     true
  core                Apache::Solr     undef
  field_key_simplify  Apache::Solr     true
  format              Apache::Solr     'JSON'
  json                                 <created internally>
  retry_max           Apache::Solr     60
  retry_wait          Apache::Solr     5
  server              Apache::Solr     <required>
  server_version      Apache::Solr     <latest>

=over 2

=item agent => LWP::UserAgent-object

=item autocommit => BOOLEAN

=item core => $name

=item field_key_simplify => BOOLEAN

=item format => 'XML'|'JSON'

=item json => JSON object

By default, an JSON object is created for you, in utf8 mode.

=item retry_max => COUNT

=item retry_wait => $seconds

=item server => $url

=item server_version => $version

=back

=back

=head2 Attributes

Extends L<"Attributes" in Apache::Solr|Apache::Solr/"Attributes">.

=over 4

=item $obj-E<gt>B<agent>()

Inherited, see L<Apache::Solr/"Attributes">

=item $obj-E<gt>B<autocommit>( [BOOLEAN] )

Inherited, see L<Apache::Solr/"Attributes">

=item $obj-E<gt>B<core>( [$core] )

Inherited, see L<Apache::Solr/"Attributes">

=item $obj-E<gt>B<fieldKeySimplify>()

Inherited, see L<Apache::Solr/"Attributes">

=item $obj-E<gt>B<json>()

Z<>

=item $obj-E<gt>B<server>( [$uri|STRING] )

Inherited, see L<Apache::Solr/"Attributes">

=item $obj-E<gt>B<serverVersion>()

Inherited, see L<Apache::Solr/"Attributes">

=back

=head2 Commands

See L<https://wiki.apache.org/solr/UpdateJSON>

Extends L<"Commands" in Apache::Solr|Apache::Solr/"Commands">.

=head3 Search

Extends L<"Search" in Apache::Solr|Apache::Solr/"Search">.

=over 4



( run in 0.581 second using v1.01-cache-2.11-cpan-85f18b9d64f )