[00:36:24] <MikeFair_> I might be wrong, but the errors seem to be saying that a "Collection" is not callable (the collection of documents in mongo.db perhaps?)
[00:37:33] <MikeFair_> So I'm just following the rabbit hole of what the error itself is saying
[00:37:50] <MikeFair_> And marrying it up to a little Google on the Mongo API
[00:37:55] <Yiq> i got it, i need to do mongo.db.blogposts.find() for example
[03:22:59] <ryanair> I'm trying to merge two documents from two different collections and add the result to a third.
[03:23:11] <ryanair> So for example {'key1':'v1','key2':'v2'} from collection1 and {'key3':'v3','key4':'v4'} from collection2 gives {'key1':'v1','key2':'v2','key3':'v3','key4':'v4'} which is saved in collection3.
[03:23:24] <ryanair> Should I be using map/reduce for this?
[03:23:57] <ryanair> or is there another simpler/faster way?
[04:00:30] <MikeFair_> ryanair: Do you mean to avoid the slow joiner problem where you miss messages?
[04:19:57] <ryanair> MikeFair: I'm not sure what you mean.
[04:20:49] <emocakes> who uses play framework here?
[04:29:18] <ryanair> MikeFair_: I'm not aware of the slow joiner problem. What is that?
[06:20:50] <emocakes> anyone uses play framework here?
[07:52:30] <ron> emocakes: assuming it's mongodb related, just ask.
[07:53:09] <emocakes> just wondering if there is any simple scaffold lying about, I'm trying out mongodb and scala, wanting to learn something new, and its jumping quite a big ship
[07:53:23] <emocakes> i.e: i come from sql and php background :p
[08:45:14] <zishh> hey, i need the mongodb c++ driver for windows (visual studio) - the wiki page http://www.mongodb.org/pages/viewpage.action?pageId=10092800#C%2B%2BTutorial-Windows says "The MongoDB Windows binary packages include a file lib/mongoclient.lib. Include this library in your client project." but there is no binary of the lib
[08:45:34] <emocakes> with mongo is there performance degradation based on how many nested objects you have?
[08:56:13] <zishh> btw: i've also tried to compile it myself but i dont have any experience with scons and the library is over 200mb in size - so i assume it's a debug version
[09:21:02] <zishh> mongodb still cant work with boost filesystem v3?
[13:18:34] <Yiq> With mongodb can i extract and order on descending datetime?
[13:57:18] <Bartzy> Besides cursor timeout - there are no other timeouts for a connection in itself ?
[13:57:52] <Bartzy> For example, I have a long running PHP worker. It creates a MongoCollection object when it starts, and when it gets a job - it calls update() on that MongoCollection object.
[13:57:57] <Bartzy> Can that MongoCollection object time out ?
[13:58:04] <Bartzy> meaning the connection itself will timeout ?
[13:58:15] <Bartzy> And if it can - the drivers handle it internally, or I need to do something ?
[18:58:44] <cakehero> is there an admin UI ya'll would recommend for mongo?
[20:25:22] <jeromegn> hey guys, got a schema design question.
[20:25:53] <jeromegn> I'm building a chat app, I have rooms as a collection in which I embed the various chat room events (messages, leave, join, etc.)
[20:26:41] <jeromegn> It can get pretty big at some point. After x embedded messages, should I just remove them as embedded objects and put them in their own collection ("events") for archive purposes?
[20:26:50] <jeromegn> is that a common schema design?
[20:28:24] <jeromegn> I think this might work: http://cookbook.mongodb.org/patterns/perform-two-phase-commits/
[21:20:18] <ThisGuy> Anyone do PHP Troubleshooting?
[21:29:33] <fitzagard> Okay. This is the mongodb irc room so its primarily dedicated to the db side of the house. Unless this is a PHP/MongoDB driver issue
[21:41:26] <ryanair> how in mongodb map/reduce can I emit all keys in each document?
[22:53:24] <jmikola> ryanair: https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Statements/for...in iterates across keys, which you can emit