[10:21:11] <user123321> If I install MonoDB in Ubuntu, and install PHP-MO-ADMIN later, would there be a conflict or will it already detect the existing Mongo DB and work with it?
[10:28:26] <Gr1> Is it possible for one primary node to act as the primary for multiple replica set clusters?
[10:28:54] <Gr1> like rs0 and rs1, that can share same primary node?
[10:59:24] <jikr> I have been searching for a way to append a string to the end of a field already containing a string, without having to retrieve the contents of that field first. But havent been able to find a good way to do it, so I went here for professional help :)
[12:01:16] <Yeitijem> Hi @ all! What is the best way to build a nested mongodb document from a nested object structure with casbah?
[13:50:52] <pradeepc> Hello, I am trying to restore a replicaset of 3 machines out of which one if arbiteer.
[13:51:33] <pradeepc> now when i restored the data, i am getting an error saying "erplSet initial sync need a member to be primary or secondary to do our initial sync"
[13:51:47] <pradeepc> and both the nodes are in startup2 state
[13:54:27] <pradeepc> i restored the data on the node which i want to be primary using mongorestore command
[13:54:41] <pradeepc> and there is currently no data on the node whih i want to be secondary
[13:55:13] <kali> in what state where both servers when you added the data ? completely unaware of each other ?
[13:55:25] <kali> you started from a clean fresh install ?
[13:55:29] <mylord> can i have obj:{ “a”:1, “a”:2 } ?
[13:55:41] <kali> mylord: it may work, but it's a bad idea
[13:55:51] <kali> mylord: it will not work with all languages
[13:56:04] <kali> mylord: it really should not work at all.
[13:56:17] <mylord> how can i even do that tho, just curious? ie, how to get mongodb to add another “a” ?
[13:56:45] <mylord> i have a tournaments engine and user “a” can enter multiple times, but I guess I’ll make an array for his entrances
[13:56:51] <kali> mylord: i've seen it, but if i remember correctly it was due to bug in the ruby driver
[13:57:37] <kali> mylord: you could have an input hash with "a" as a string and :a as a symbol, so the hash was fine from a ruby point of view, and it was translated to a bson array with the key "a" twice present
[13:58:08] <kali> mylord: as mongodb was not doing any validation on the inserted document at that time, it was accepting it
[15:23:54] <kali> qwebirc67965: nope. both chunking of collections and chunk migration are collection per collection
[15:47:13] <mylord> any help? how to update the score of one of the users, based on "uid" and "joined"? https://gist.github.com/anonymous/41f04d921554ecd3e07a
[17:01:48] <sshaginyan> Hi guys I have a problem getting a query to work. http://pastie.org/9219492
[19:47:36] <tpayne> Hello. Is there a way to have mongo treat multiple collections as one? For pagination reasons. For example I'm building a feed of different types. I'm trying to refrain from having hybrid data objects that satisfy more than one type, and is identified by some integer...
[21:18:46] <jimpop> what's the correct pymongo syntax to find all documents with an _id that matches $in a python list?