Catmandu-Solr

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use 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",

META.json  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
{
   "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" : {

META.yml  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
---
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'

README  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
NAME
 
    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

68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
        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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
# 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 )