[12:54:15] <Mick27> is there a way to get the http interface to return a 200 when master and something else when not ?
[14:14:01] <iksik> guys https://gist.github.com/krzysztofantczak/553a489499f12ce05352 - if my collection schemes are looking like this, what would be the best approach to list ie. 10 movies with marked 'isFavourite':true/false for particular user?
[14:16:01] <iksik> in other words i need to find out if each movie exists in user.favourites array hm
[14:18:54] <salty-horse> hey. it's possible to set up a sharded database where each shard is a replica set, right? top paragraph at the top of this page just doesn't mention it? http://docs.mongodb.org/manual/tutorial/convert-sharded-cluster-to-replica-set/
[18:11:41] <BadCodSmell> Every single example is open, issue command, close.
[18:12:09] <BadCodSmell> There is no example for maintaining a reliable persistent link without memory leaks, uninterrupted (hung) flow control with callbacks, etc
[18:12:19] <BadCodSmell> The thing is much more easier to use and reliable in PHP than in Js
[18:13:47] <BadCodSmell> neutered by poor documentation :(
[18:32:59] <ckwalsh> Asked a question in #mongoosejs and looks like nobody is there at the moment. OK to ask here?
[19:26:52] <BadCodSmell> The low level driver needs a lot more work on the documentation
[19:27:29] <BadCodSmell> Interestingly it's also not parallel.
[19:27:47] <BadCodSmell> I would expect that from mysql but less from mongo.
[20:45:12] <ttxtt> when I create a new document, I can specify an '_id' string. However I don't see a way to do that when uploading a GridFS file. (1) is there a design or technical reason for this inconsistency? (2) is it usually considered better practice to let mongo create _ids for all documents? (I'm making my own for consistent serialization/deserialization of the data)
[20:59:07] <mjuszczak> MongoDB deals only in BSON and the conversion to JSON is done by the client libraries, correct?