[12:26:14] <the_voice_> This is a pretty big problem with Mongo I am trying to solve
[12:27:28] <the_voice_> currently I have one document per comment and then inside the comment document I store the replies as an array of documents. Each one of those embedded documents contains the userID and the reply text
[12:28:10] <the_voice_> sometimes I need to update the userId or text and to do that right now the best solution I have found is to pull out the whole reply array, update the embedded documents inside the array and then push it back to the parent document
[12:28:14] <the_voice_> is there a better solution?
[15:04:54] <itaipu> is there any mongodb public available for developers ? I tried cloud.mongodb.com but it seems it just manages the deploys, doesn't offer the service ( the options are to use aws or local)
[15:17:52] <cheeser> you mean public hosting of mongodb instances?
[15:23:08] <itaipu> cheeser: public in the sense that I can use it; have my collections there, just for testing the application that is in heroku now
[15:24:45] <itaipu> cheeser: I don't want or need to manage any virtual instance... just have a mongodb host available
[15:31:42] <cheeser> and aws isn't an option? cloud manager has a trial period.
[15:32:39] <cheeser> i would recommend cloud manager first but here are other options: https://mongolab.com/ , https://www.compose.io/ , http://objectrocket.com/
[15:33:18] <itaipu> cheeser: yeah it is, I had an old account there, and of course I forgot the password, but worst, aws needs my zip code to recovery it and I'm having trouble with this part of recovery now...
[15:34:55] <itaipu> cheeser: thks, I give a try on those :)
[20:52:28] <christo_m> any reason why an insert with monk wield yield an undefined item in the callback, even though the insertion is successful?