Catmandu-Solr

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

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

{
   "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" : {
      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",

META.yml  view on Meta::CPAN

---
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

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

        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

package 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

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.714 second using v1.00-cache-2.02-grep-82fe00e-cpan-4673cadbf75 )