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

I know absolutely nothing about MongoDB, but I can tell you that you're trying to call a method on something that doesn't have any (a plain hash reference).

In the MongoDB documentation's SYNOPSYS, it shows that to delete a document, you call the method against the collection ($coll) object like this: $coll->delete_one({ name => 'value' });

For completeness, here's the expanded documentation specifically for the delete_one() method.

When in doubt, RTFM ;)

Replies are listed 'Best First'.
Re^4: MongoDB removing document
by GertMT (Hermit) on Oct 26, 2015 at 18:48 UTC
    Thanks, after studying the documents (that are really well done!) I indeed do have a problem executing the proper commands while iterating the MongoDB::Cursor. There are not too many examples of that.