Catmandu-Solr
view release on metacpan or search on metacpan
67891011121314151617181920212223242526use
Module::Build 0.28;
my
%module_build_args
= (
"build_requires"
=> {
"Module::Build"
=>
"0.4229"
},
"configure_requires"
=> {
"Module::Build"
=>
"0.28"
},
"dist_abstract"
=>
"Catmandu modules for working with solr endpoints"
,
"dist_author"
=> [
"Nicolas Steenlant, C<< nicolas.steenlant at ugent.be >>"
],
"dist_name"
=>
"Catmandu-Solr"
,
"dist_version"
=>
"0.0304"
,
"license"
=>
"perl"
,
"module_name"
=>
"Catmandu::Solr"
,
"recursive_test_files"
=> 1,
"requires"
=> {
"CQL::Parser"
=>
"1.12"
,
123456789101112{
"abstract"
:
"Catmandu modules for working with solr endpoints"
,
"author"
: [
"Nicolas Steenlant, C<< nicolas.steenlant at ugent.be >>"
],
"dynamic_config"
: 0,
"generated_by"
:
"Dist::Milla version v1.0.20, Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010"
,
"license"
: [
"perl_5"
],
"meta-spec"
: {
123456789101112---
abstract:
'Catmandu modules for working with solr endpoints'
author:
-
'Nicolas Steenlant, C<< nicolas.steenlant at ugent.be >>'
build_requires:
Catmandu::Store::Hash:
'0'
Module::Build:
'0.4229'
Software::License:
'0'
Test::Exception:
'0'
Test::More:
'0'
configure_requires:
Module::Build:
'0.28'
12345678910111213NAME
Catmandu::Solr - Catmandu modules
for
working
with
solr endpoints
SYNOPSIS
# From the command line
# Import data into Solr
$ catmandu
import
JSON to Solr < data.json
# Export data from ElasticSearch
$ catmandu export Solr to JSON > data.json
lib/Catmandu/Importer/Solr.pm view on Meta::CPAN
686970717273747576777879808182838485868788
query
=>
$self
->query,
fq
=>
$self
->fq,
limit
=> 0,
facet
=>
"false"
,
spellcheck
=>
"false"
)->total();
}
=head1 NAME
Catmandu::Importer::Solr - Catmandu module to import data from a Solr endpoint
=head1 SYNOPSIS
# From the command line
$ catmandu convert Solr --url "http://localhost:8983/solr" --query "type:book"
# From perl
use Catmandu;
my %attrs = (
lib/Catmandu/Solr.pm view on Meta::CPAN
123456789101112131415161718package
Catmandu::Solr;
# ABSTRACT: Catmandu modules for working with solr endpoints
our
$VERSION
=
"0.0304"
;
=head1 NAME
Catmandu::Solr - Catmandu modules for working with solr endpoints
=head1 SYNOPSIS
# From the command line
# Import data into Solr
$ catmandu import JSON to Solr < data.json
# Export data from ElasticSearch
$ catmandu export Solr to JSON > data.json
( run in 0.299 second using v1.01-cache-2.11-cpan-a9ef4e587e4 )