http://qs321.pair.com?node_id=1146027


in reply to Re^2: MongoDB removing document
in thread MongoDB removing document

I haven't done any work with MongoDB, but I assume from the following:

# delete a document $coll->delete_one( { name => "John Doe" } );

... that you can delete a single document given its ID by using:

$coll->delete_one( $doc ); # or maybe $coll->delete_one( { _id => $doc->{_id} } );