[10:25:22] <KushS> I am using mongoose for my node app. Earlier I used it to connect to a mongolab db but now I am using the same code to store data on my local db but the it does'nt seem to register the schema I created. Should I change something else apart from the db url ?
[14:56:07] <DrIDK> hello, how can I set the depth level of my find request ? I have 3 kind of level : Users has many A which have many B, which have many C. I only want to get the user list ?
[17:37:49] <richthegeek> is it possible to do a string "split" or even an eval in the aggregation framework? specifically, i am hoping to do an analytics query for the "top referrering domains"
[17:38:00] <richthegeek> but my data has the referrers as the full URL (incl. path)
[17:38:34] <richthegeek> Tulsene: your query is likely incorrect, try {roleNames: "ROLE_SIMPLE_USER"} (without the array)
[17:58:56] <akiba_> what database should i use for this search+game server accounts+sessions+leaderboards+forums
[18:03:45] <richthegeek> mongo will work for that well enough - search is potentially better served by Apache Solr, game server accounts are simple enough generally (see Passport.js if node), sessions are perfect for documents, leaderboards can be done with the aggregation framework, forums are bit relational which isn't ideal for mongodb - forums are usually better done with SQL
[19:09:29] <jkitchen> dpkg: warning: while removing mongodb-10gen, unable to remove directory '/var/lib/mongodb': Device or resource busy - directory may be a mount point?
[19:09:45] <jkitchen> err. why is "apt-get remove mongodb-10gen" trying to wipe out /var/lib/mongodb ?
[19:10:56] <jkitchen> apt-get purge I might expect that, but not remove..
[19:20:51] <stefandxm> although remove imo is always jumpy
[19:27:14] <DamianG> Guys, I want to make sure id it's a good idea to store images in mongodb / gridfs ? I'm refactoring a semi big portal with about milion of images, and jsut wondering - store them on disk or in gridfs ?