AnyMongo

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: AnyMongo
requires:
  Any::Moose: 0
  AnyEvent: 0
  Carp: 0
  Tie::IxHash: 0
  boolean: 0
  namespace::autoclean: 0
  parent: 0
version: 0.03

Makefile.PL  view on Meta::CPAN

  'EXE_FILES' => [],
  'LICENSE' => 'perl',
  'NAME' => 'AnyMongo',
  'OBJECT' => '$(O_FILES)',
  'PREREQ_PM' => {
    'Any::Moose' => '0',
    'AnyEvent' => '0',
    'Carp' => '0',
    'Tie::IxHash' => '0',
    'boolean' => '0',
    'namespace::autoclean' => '0',
    'parent' => '0'
  },
  'VERSION' => '0.03',
  'test' => {
    'TESTS' => 't/*.t t/perl-driver-api/*.t'
  }
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {

dist.ini  view on Meta::CPAN

copyright_holder = Pan Fan(nightsailer)
copyright_year   = 2010

[Prereqs]
AnyEvent = 0
Carp = 0
parent = 0
Any::Moose = 0
boolean = 0
Tie::IxHash = 0
namespace::autoclean = 0

[Prereqs / TestRequires]
Test::More      = 0.9
Test::Deep = 0.106
[NextRelease]
[PodWeaver]
[ReadmeFromPod]
[CopyReadmeFromBuild]
[=inc::AnyMongo::MakeMaker / AnyMongo::MakeMaker]
[@Filter]

lib/AnyMongo/BSON/Code.pm  view on Meta::CPAN

package AnyMongo::BSON::Code;
BEGIN {
  $AnyMongo::BSON::Code::VERSION = '0.03';
}
# ABSTRACT: BSON type,it's used to represent JavaScript code and, optionally, scope.
use strict;
use warnings;
use namespace::autoclean;
use Any::Moose;


has code => (
    is       => 'ro',
    isa      => 'Str',
    required => 1,
);


lib/AnyMongo/BSON/OID.pm  view on Meta::CPAN

package AnyMongo::BSON::OID;
BEGIN {
  $AnyMongo::BSON::OID::VERSION = '0.03';
}
# ABSTRACT: A Mongo ObjectId
use strict;
use warnings;
# use namespace::autoclean;
use AnyMongo;
use Any::Moose;


has value => (
    is      => 'ro',
    isa     => 'Str',
    required => 1,
    builder => 'build_value',
);

lib/AnyMongo/BSON/Timestamp.pm  view on Meta::CPAN

package AnyMongo::BSON::Timestamp;
BEGIN {
  $AnyMongo::BSON::Timestamp::VERSION = '0.03';
}
# ABSTRACT: BSON Timestamps data type, it is used internally by MongoDB's replication.
use strict;
use warnings;
use namespace::autoclean;
use Any::Moose;


has sec => (
    is       => 'ro',
    isa      => 'Int',
    required => 1,
);


lib/AnyMongo/Collection.pm  view on Meta::CPAN

package AnyMongo::Collection;
BEGIN {
  $AnyMongo::Collection::VERSION = '0.03';
}
# ABSTRACT: Asynchronous MongoDB::Collection
use strict;
use warnings;
use namespace::autoclean;
use Tie::IxHash;
use boolean;
use Any::Moose;

has _database => (
    is       => 'ro',
    isa      => 'AnyMongo::Database',
    required => 1,
);

lib/AnyMongo/Connection.pm  view on Meta::CPAN

    REPLY_AWAIT_CAPABLE        => 8,
};

use Carp qw(croak);
use Data::Dumper;
use AnyEvent::Socket;
use AnyEvent::Handle;
use AnyMongo::BSON qw(bson_decode);
use AnyMongo::MongoSupport qw(decode_bson_documents);
use AnyMongo::Cursor;
use namespace::autoclean;
use Any::Moose;

has find_master => (
    is       => 'ro',
    isa      => 'Bool',
    required => 1,
    default  => 0,
);

has master_handle => (

lib/AnyMongo/Cursor.pm  view on Meta::CPAN

package AnyMongo::Cursor;
BEGIN {
  $AnyMongo::Cursor::VERSION = '0.03';
}
#ABSTRACT: A asynchronous cursor/iterator for Mongo query results
use strict;
use warnings;
use namespace::autoclean;
use boolean;
use Tie::IxHash;
use AnyMongo::MongoSupport;
use Any::Moose;
use Carp qw(croak confess);

$AnyMongo::Cursor::slave_okay = 0;
$AnyMongo::Cursor::timeout = 30000;

has _connection => (

lib/AnyMongo/Database.pm  view on Meta::CPAN

package AnyMongo::Database;
BEGIN {
  $AnyMongo::Database::VERSION = '0.03';
}
# ABSTRACT: Asynchronous MongoDB::Database
use strict;
use warnings;
use namespace::autoclean;
use Any::Moose;
use constant {
    SYSTEM_NAMESPACE_COLLECTION => "system.namespaces",
    SYSTEM_INDEX_COLLECTION => "system.indexes",
    SYSTEM_PROFILE_COLLECTION => "system.profile",
    SYSTEM_USER_COLLECTION => "system.users",
    SYSTEM_JS_COLLECTION => "system.js",
    SYSTEM_COMMAND_COLLECTION => '$cmd',
};

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

( run in 0.783 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )