[02:20:08] <timeturner> how do you splice a subdoc out of an array?
[02:59:52] <abstrusenick> does gridfs use memory like normal collections?
[03:00:19] <abstrusenick> for example if i have 2GB of files in gridfs, will it occupy 2GB of RAM?
[03:06:20] <timeturner> how do you splice a subdoc out of an array?
[04:39:56] <hdm> anyone familiar with mongod ssl usage? I keep getting "Can't read key file" for a valid pem, verifying with openssl and other tools shows the same, using 2.2.0 from source
[04:41:08] <hdm> pem contains private + crt, password reset to something lame ('test'), example cli is /opt/mongo-custom/bin/mongod --dbpath=/home/mongo/data/ --port=50123 --sslOnNormalPorts --sslPEMKeyFile=/home/mongo/mongod.pem --sslPEMKeyPassword=test
[04:41:08] <hdm> Error is Sat Oct 20 23:38:01 Can't read key file: /home/mongo/mongod.pem
[04:42:47] <toothrot> check all the obvious stuff like path exists, permissions, etc?
[16:53:36] <izhak> Hi, guys how do I get all docs where a field is an array and contains _any_ of the values specified, is there smth like $any (instead of $all) predicate emulation?
[21:40:53] <itatitat> guys, i dont know anything about mongodb. But im interested. My question is, I need to know doctrine?, or something adittional, I know only sql
[21:45:39] <krawek> hi guys, what is the format of oplogSize ?
[22:01:15] <itatitat> Derick: i dont know anything about mongodb. But im interested. My question is, I need to know doctrine?, or something adittional, I know only sql
[22:03:32] <polipie> is there a way to reduce the amount of scanned object in this query? http://pastie.org/pastes/5095312/text?key=qlmy922arqvkag6gdon8g
[22:07:54] <itatitat> polipie: I want to learn mongodb, is possible knowing that I only know mysql?
[22:10:18] <ianblenke1> itatitat: is that a rhetorical question?
[22:10:25] <polipie> itatitat: http://www.mongodb.org/display/DOCS/Home start here
[22:11:13] <ianblenke1> why would it be impossible to learn mongodb if you only know mysql?
[22:12:15] <itatitat> I dont know about mongodb, so I was thinking...maybe mongodb need more knowledge about another stuff.....doctrine, pdo...only was thinking
[22:13:49] <ianblenke1> note, I just googled "doctrine pdo mongodb" and found this link: http://www.doctrine-project.org/projects/mongodb-odm.html
[22:16:06] <ianblenke1> perhaps what you are really asking here is "I know php and mysql with ORMs like doctrine and pdo, and need to know if I can use the same ORMs with mongodb without having to re-learn a new ORM". The answer there is likely "probably, but it helps to differentiate the capabilities of releational vs document object stores and know how to optimally interact with your data to prevent performance bottlenecks from doing things in
[22:21:43] <itatitat> nono, in my case I dont know ORM, only mysql, and PDO,
[22:21:52] <polipie> Vile: it is using a relevant index :)
[22:22:04] <polipie> compound index on the 2 fields in the correct order
[22:22:36] <ianblenke1> no, as with most things, there is no prerequisite of knowledge before learning things, though having prior knowledge does often hasten the learning process.
[22:22:38] <polipie> I think i have too much data in the collection for the index to be fast enough
[22:24:55] <Vile> do you have more users or workflows?
[23:13:46] <Kim^J> If you want to compare an array, IE, find a document where all elements in an array matches all elements in the query array. {1,2,3} will only match {1,2,3}, is it $eq I should use or something else?
[23:20:27] <Kim^J> Hm, I guess a:{$all:[2,3],$size:2} works.
[23:34:47] <SpNg> I have a node.js application leveraging mongodb. Currently i'm collecting stats on one of my apps, but mongo keeps locking the server with the processor hitting 100%. I migrated mongos to it's owner server and it's still having the same problem. I'm performing maybe 3-5 upserts a second. Should upsetting be taxing the server that much?
[23:36:57] <SpNg> also I'm creating a new connection to mongod for every upset. Maybe this concurrency would be causing the problem?