[17:49:34] <iksik> db.getCollection('virtual').update({},{$pull: {meta:{$regex: /^((?!\/).)*$/}}}) - i'm trying to pull from "meta" array, all items (strings) that are not containing "/" character, as a result i'm getting: Updated 1 existing record(s) in 0ms - but nothing actuall happens (there's over 137 matching records according to: db.getCollection('virtual').find({meta:{$regex: /^((?!\/).)*$/}}, {meta:1})
[19:34:32] <tom> In my Python app (using pymongo), I'd like to send multiple find_and_modify commands at once and then receive all the responses without wasting round trips in between every find_and_modify command. Is this possible? Would I need multiple sockets or could I write all requests at once into the socket? How would I implement it?