| MongoDB documentation | Contained in the MongoDB distribution. |
MongoDB::Collection - A Mongo collection
An instance of a MongoDB collection.
# gets the foo collection
my $collection = $db->foo;
Collection names can be chained together to access subcollections. For
instance, the collection foo.bar can be accessed with:
my $collection = $db->foo->bar;
You can also access collections with the get_collection in MongoDB::Database method.
Core documentation on collections: http://dochub.mongodb.org/core/collections.
The name of the collection.
The full_name of the collection, including the namespace of the database it's in.
$name = MongoDB::Collection::to_index_string({age : 1});
Takes a Tie::IxHash, hash reference, or array reference. Converts it into an index string.
my $cursor = $collection->find({ i => { '$gt' => 42 } });
Executes the given $query and returns a MongoDB::Cursor with the results.
$query can be a hash reference, Tie::IxHash, or array reference (with an
even number of elements).
The set of fields returned can be limited through the use of the
MongoDB::Cursor::fields method on the resulting MongoDB::Cursor object.
Other commonly used cursor methods are MongoDB::Cursor::limit,
MongoDB::Cursor::skip, and MongoDB::Cursor::sort.
See also core documentation on querying: http://dochub.mongodb.org/core/find.
Identical to MongoDB::Collection::find, described above.
my $cursor = $collection->query({ }, { limit => 10, skip => 10 });
my $cursor = $collection->query(
{ location => "Vancouver" },
{ sort_by => { age => 1 } },
);
Valid query attributes are:
Limit the number of results.
Skip a number of results.
Order results.
my $object = $collection->find_one({ name => 'Resi' });
my $object = $collection->find_one({ name => 'Resi' }, { name => 1, age => 1});
Executes the given $query and returns the first object matching it.
$query can be a hash reference, Tie::IxHash, or array reference (with an
even number of elements). If $fields is specified, the resulting document
will only include the fields given (and the _id field) which can cut down on
wire traffic.
my $id1 = $coll->insert({ name => 'mongo', type => 'database' });
my $id2 = $coll->insert({ name => 'mongo', type => 'database' }, {safe => 1});
Inserts the given $object into the database and returns it's id
value. $object can be a hash reference, a reference to an array with an
even number of elements, or a Tie::IxHash. The id is the _id value
specified in the data or a MongoDB::OID.
The optional $options parameter can be used to specify if this is a safe
insert. A safe insert will check with the database if the insert succeeded and
croak if it did not. You can also check if the insert succeeded by doing an
unsafe insert, then calling "last_error($options?)" in MongoDB::Database.
See also core documentation on insert: http://dochub.mongodb.org/core/insert.
my @ids = $collection->batch_insert([{name => "Joe"}, {name => "Fred"}, {name => "Sam"}]);
Inserts each of the documents in the array into the database and returns an array of their _id fields.
The optional $options parameter can be used to specify if this is a safe
insert. A safe insert will check with the database if the insert succeeded and
croak if it did not. You can also check if the inserts succeeded by doing an
unsafe batch insert, then calling "last_error($options?)" in MongoDB::Database.
$collection->update({'x' => 3}, {'$inc' => {'count' => -1} }, {"upsert" => 1, "multiple" => 1});
Updates an existing $object matching $criteria in the database.
Returns 1 unless the safe option is set. If safe is set, this will return
a hash of information about the update, including number of documents updated
(n). If safe is set and the update fails, update will croak. You can
also check if the update succeeded by doing an unsafe update, then calling
"last_error($options?)" in MongoDB::Database.
update can take a hash reference of options. The options currently supported
are:
upsert
If no object matching $criteria is found, $object will be inserted.multiple
All of the documents that match $criteria will be updated, not just
the first document found. (Only available with database version 1.1.3 and
newer.)safe
If the update fails and safe is set, the update will croak.See also core documentation on update: http://dochub.mongodb.org/core/update.
$collection->remove({ answer => { '$ne' => 42 } });
Removes all objects matching the given $query from the database. If no
parameters are given, removes all objects from the collection (but does not
delete indexes, as MongoDB::Collection::drop does).
Returns 1 unless the safe option is set. If safe is set and the remove
succeeds, remove will return a hash of information about the remove,
including how many documents were removed (n). If the remove fails and
safe is set, remove will croak. You can also check if the remove
succeeded by doing an unsafe remove, then calling
"last_error($options?)" in MongoDB::Database.
remove can take a hash reference of options. The options currently supported
are
just_one
Only one matching document to be removed.safe
If the update fails and safe is set, this function will croak.See also core documentation on remove: http://dochub.mongodb.org/core/remove.
use boolean;
$collection->ensure_index({"foo" => 1, "bar" => -1}, { unique => true });
Makes sure the given $keys of this collection are indexed. $keys can be an
array reference, hash reference, or Tie::IxHash. Tie::IxHash is prefered
for multi-key indexes, so that the keys are in the correct order. 1 creates an
ascending index, -1 creates a descending index.
If the safe option is not set, ensure_index will not return anything
unless there is a socket error (in which case it will croak). If the safe
option is set and the index creation fails, it will also croak. You can also
check if the indexing succeeded by doing an unsafe index creation, then calling
"last_error($options?)" in MongoDB::Database.
See the MongoDB::Indexing pod for more information on indexing.
$collection->save({"author" => "joe"});
my $post = $collection->find_one;
$post->{author} = {"name" => "joe", "id" => 123, "phone" => "555-5555"};
$collection->save($post);
Inserts a document into the database if it does not have an _id field, upserts it if it does have an _id field.
safe = boolean>If the save fails and safe is set, this function will croak.
The return types for this function are a bit of a mess, as it will return the _id if a new document was inserted, 1 if an upsert occurred, and croak if the safe option was set and an error occurred. You can also check if the save succeeded by doing an unsafe save, then calling "last_error($options?)" in MongoDB::Database.
my $n_objects = $collection->count({ name => 'Bob' });
Counts the number of objects in this collection that match the given $query.
If no query is given, the total number of objects in the collection is returned.
$collection->validate;
Asks the server to validate this collection. Returns a hash of the form:
{
'ok' => '1',
'ns' => 'foo.bar',
'result' => info
}
where info is a string of information
about the collection.
$collection->drop_indexes;
Removes all indexes from this collection.
$collection->drop_index('foo_1');
Removes an index called $index_name from this collection.
Use MongoDB::Collection::get_indexes to find the index name.
my @indexes = $collection->get_indexes;
Returns a list of all indexes of this collection.
Each index contains ns, name, and key
fields of the form:
{
'ns' => 'db_name.collection_name',
'name' => 'index_name',
'key' => {
'key1' => dir1,
'key2' => dir2,
...
'keyN' => dirN
}
}
where dirX is 1 or -1, depending on if the
index is ascending or descending on that key.
$collection->drop;
Deletes a collection as well as all of its indexes.
Kristina Chodorow <kristina@mongodb.org>
| MongoDB documentation | Contained in the MongoDB distribution. |
# # Copyright 2009 10gen, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # package MongoDB::Collection; our $VERSION = '0.43'; # ABSTRACT: A Mongo Collection
use Tie::IxHash; use Any::Moose; use boolean; has _database => ( is => 'ro', isa => 'MongoDB::Database', required => 1, );
has name => ( is => 'ro', isa => 'Str', required => 1, );
has full_name => ( is => 'ro', isa => 'Str', lazy => 1, builder => '_build_full_name', ); sub _build_full_name { my ($self) = @_; my $name = $self->name; my $db_name = $self->_database->name; return "${db_name}.${name}"; } sub AUTOLOAD { my $self = shift @_; our $AUTOLOAD; my $coll = $AUTOLOAD; $coll =~ s/.*:://; return $self->_database->get_collection($self->name.'.'.$coll); }
sub to_index_string { my $keys = shift; my @name; if (ref $keys eq 'ARRAY' || ref $keys eq 'HASH' ) { while ((my $idx, my $d) = each(%$keys)) { push @name, $idx; push @name, $d; } } elsif (ref $keys eq 'Tie::IxHash') { my @ks = $keys->Keys; my @vs = $keys->Values; @vs = $keys->Values; for (my $i=0; $i<$keys->Length; $i++) { push @name, $ks[$i]; push @name, $vs[$i]; } } else { confess 'expected Tie::IxHash, hash, or array reference for keys'; } return join("_", @name); }
sub find { my ($self, $query, $attrs) = @_; # old school options - these should be set with MongoDB::Cursor methods my ($limit, $skip, $sort_by) = @{ $attrs || {} }{qw/limit skip sort_by/}; $limit ||= 0; $skip ||= 0; my $q = {}; if ($sort_by) { $q->{'query'} = $query; $q->{'orderby'} = $sort_by; } else { $q = $query ? $query : {}; } my $conn = $self->_database->_connection; my $ns = $self->full_name; my $cursor = MongoDB::Cursor->new( _connection => $conn, _ns => $ns, _query => $q, _limit => $limit, _skip => $skip ); $cursor->_init; return $cursor; } sub query { my ($self, $query, $attrs) = @_; return $self->find($query, $attrs); }
sub find_one { my ($self, $query, $fields) = @_; $query ||= {}; $fields ||= {}; return $self->find($query)->limit(-1)->fields($fields)->next; }
sub insert { my ($self, $object, $options) = @_; my ($id) = $self->batch_insert([$object], $options); return $id; }
sub batch_insert { my ($self, $object, $options) = @_; confess 'not an array reference' unless ref $object eq 'ARRAY'; my $add_ids = 1; if ($options->{'no_ids'}) { $add_ids = 0; } my $conn = $self->_database->_connection; my $ns = $self->full_name; my ($insert, $ids) = MongoDB::write_insert($ns, $object, $add_ids); if (length($insert) > $conn->max_bson_size) { Carp::croak("insert is too large: ".length($insert)." max: ".$conn->max_bson_size); return 0; } if (defined($options) && $options->{safe}) { my $ok = $self->_make_safe($insert); if (!$ok) { return 0; } } else { $conn->send($insert); } return $ids ? @$ids : $ids; }
sub update { my ($self, $query, $object, $opts) = @_; # there used to be one option: upsert=0/1 # now there are two, there will probably be # more in the future. So, to support old code, # passing "1" will still be supported, but not # documentd, so we can phase that out eventually. # # The preferred way of passing options will be a # hash of {optname=>value, ...} my $flags = 0; if ($opts && ref $opts eq 'HASH') { $flags |= $opts->{'upsert'} << 0 if exists $opts->{'upsert'}; $flags |= $opts->{'multiple'} << 1 if exists $opts->{'multiple'}; } else { $flags = !(!$opts); } my $conn = $self->_database->_connection; my $ns = $self->full_name; my $update = MongoDB::write_update($ns, $query, $object, $flags); if ($opts->{safe}) { return $self->_make_safe($update); } $conn->send($update); return 1; }
sub remove { my ($self, $query, $options) = @_; my ($just_one, $safe); if (defined $options && ref $options eq 'HASH') { $just_one = exists $options->{just_one} ? $options->{just_one} : 0; $safe = exists $options->{safe} ? $options->{safe} : 0; } else { $just_one = $options || 0; } my $conn = $self->_database->_connection; my $ns = $self->full_name; $query ||= {}; my $remove = MongoDB::write_remove($ns, $query, $just_one); if ($safe) { return $self->_make_safe($remove); } $conn->send($remove); return 1; }
sub ensure_index { my ($self, $keys, $options, $garbage) = @_; my $ns = $self->full_name; # we need to use the crappy old api if... # - $options isn't a hash, it's a string like "ascending" # - $keys is a one-element array: [foo] # - $keys is an array with more than one element and the second # element isn't a direction (or at least a good one) # - Tie::IxHash has values like "ascending" if (($options && ref $options ne 'HASH') || (ref $keys eq 'ARRAY' && ($#$keys == 0 || $#$keys >= 1 && !($keys->[1] =~ /-?1/))) || (ref $keys eq 'Tie::IxHash' && $keys->[2][0] =~ /(de|a)scending/)) { Carp::croak("you're using the old ensure_index format, please upgrade"); } my $obj = Tie::IxHash->new("ns" => $ns, "key" => $keys); if (exists $options->{name}) { $obj->Push("name" => $options->{name}); } else { $obj->Push("name" => MongoDB::Collection::to_index_string($keys)); } if (exists $options->{unique}) { $obj->Push("unique" => ($options->{unique} ? boolean::true : boolean::false)); } if (exists $options->{drop_dups}) { $obj->Push("dropDups" => ($options->{drop_dups} ? boolean::true : boolean::false)); } if (exists $options->{background}) { $obj->Push("background" => ($options->{background} ? boolean::true : boolean::false)); } $options->{'no_ids'} = 1; my ($db, $coll) = $ns =~ m/^([^\.]+)\.(.*)/; my $indexes = $self->_database->get_collection("system.indexes"); return $indexes->insert($obj, $options); } sub _make_safe { my ($self, $req) = @_; my $conn = $self->_database->_connection; my $db = $self->_database->name; my $last_error = Tie::IxHash->new(getlasterror => 1, w => $conn->w, wtimeout => $conn->wtimeout); my ($query, $info) = MongoDB::write_query($db.'.$cmd', 0, 0, -1, $last_error); $conn->send("$req$query"); my $cursor = MongoDB::Cursor->new(_ns => $info->{ns}, _connection => $conn, _query => {}); $cursor->_init; $cursor->_request_id($info->{'request_id'}); $conn->recv($cursor); $cursor->started_iterating(1); my $ok = $cursor->next(); # $ok->{ok} is 1 if err is set Carp::croak $ok->{err} if $ok->{err}; # $ok->{ok} == 0 is still an error if (!$ok->{ok}) { Carp::croak $ok->{errmsg}; } return $ok; }
sub save { my ($self, $doc, $options) = @_; if (exists $doc->{"_id"}) { if (!$options || !ref $options eq 'HASH') { $options = {"upsert" => boolean::true}; } else { $options->{'upsert'} = boolean::true; } return $self->update({"_id" => $doc->{"_id"}}, $doc, $options); } else { return $self->insert($doc, $options); } }
sub count { my ($self, $query) = @_; $query ||= {}; my $obj; eval { $obj = $self->_database->run_command({ count => $self->name, query => $query, }); }; # if there was an error, check if it was the "ns missing" one that means the # collection hasn't been created or a real error. if ($@) { # if the request timed out, $obj might not be initialized if ($obj && $obj =~ m/^ns missing/) { return 0; } else { die $@; } } return $obj->{n}; }
sub validate { my ($self, $scan_data) = @_; $scan_data = 0 unless defined $scan_data; my $obj = $self->_database->run_command({ validate => $self->name }); }
sub drop_indexes { my ($self) = @_; return $self->drop_index('*'); }
sub drop_index { my ($self, $index_name) = @_; my $t = tie(my %myhash, 'Tie::IxHash'); %myhash = ("deleteIndexes" => $self->name, "index" => $index_name); return $self->_database->run_command($t); }
sub get_indexes { my ($self) = @_; return $self->_database->get_collection('system.indexes')->query({ ns => $self->full_name, })->all; }
sub drop { my ($self) = @_; $self->_database->run_command({ drop => $self->name }); return; } no Any::Moose; __PACKAGE__->meta->make_immutable; 1;