[00:23:50] <jsheely|2> I've determined that v is simply the oplog version and is a constant within the compiled code and h is the objectID for the document created.
[00:25:54] <jsheely|2> Atleast I thought it's the objectID... Now I don't know.
[00:32:03] <jsheely|2> h = long long lastH; // hash we use to make sure we are reading the right flow of ops and aren't on an out-of-date "fork"
[00:32:33] <jsheely|2> Guess it's just for internal record keeping
[01:13:31] <bdiu> Is there a way to perform a find using TWO geospatial queries?... e.g., {pointA:[x,y],pointB:[x,y]} find({pointA:$geoWithin:{...},pointB:$geoWithin{...}})
[01:39:04] <jsheely|2> @bdui: Sadly this appears to be a channel ask questions but not get answers. Everyone here appears to be on vacation
[02:04:47] <bdiu> I'm looking to hire a consultant with quite a bit experience w/ the spatial/geo aspects to assist for a few hours... 10gen's $450/hr is a bit steep for my wallet though
[12:08:17] <jmsbrwr> Luckily, for what I am doing, simply using the _id is fine. Is there a better way to update every document though?
[12:09:37] <kali> you mean, doing the same on every document ? no.
[14:09:41] <CupOfCocoa> Hey guys, I have a sharded cluster of 4 machines, not all databases are sharded though. Now one of the shard instances reports using 8GB or RAM and I have a hard time fathoming what these 8GB or RAM are used for, any way to get some info on that?
[14:11:25] <CupOfCocoa> The main issue is that there is database on this machine (which is not sharded) that does a lot of updates and I see dramatic rises in the lock time %
[18:29:55] <pngl> I'm learning mongodb, How can I query for exact matches on documents and subdocuments with no sensitivity to the ordering of the fields in the documents/subdocuments?
[18:31:13] <disorder_> however I don't know how to pass the db variable to the routing functions
[19:04:48] <jwm> if I have a private network that can only do outgoing connections and I have a public network mongo instance.. can I still do a repli set
[19:05:14] <jwm> I can't access the private from the public without a vpn of sorts
[19:05:30] <jwm> but the traffic can be initiated to the public machine from the private network
[19:25:47] <awpti> jwm, as long as it's going from private to public, sure.
[20:05:31] <pngl> Is it possible to run exact matches on document and subdocuments while ignoring the order of the record fields? e.g. having query {a: "a", b: "b"} match documents {b: "b", a: "a"} and (a: "a", b: "b"} but not {a: "a", b: "b", c: "c"}
[20:09:29] <jwm> awpti: yeah I am not allowed to do vpn
[20:40:18] <gczzzzz> HI, so I am using mongoose and express and am having issues when POSTing to my server. When I post, it is giving me a status pending warning then eventually not posting to the mongo server. Anyone know why this would be happening? I have been searching online and can't find anything
[20:47:04] <David_Connelly> Room: I need a hand installing MongoDB on a Mac. I imagine this would involve Teamviewer and I'll be happy to pay for your help via Paypal. Any takers?
[20:52:57] <jwm> you just download it and uncompress then you are done
[20:54:28] <David_Connelly> that's not my experience, unfortunately
[20:57:38] <David_Connelly> I installed with homebrew and when I enter 'mongo' in the terminal, I get this...
[20:57:39] <David_Connelly> 21:56:48.762 JavaScript execution failed: Error: couldn't connect to server 127.0.0.1:27017 at src/mongo/shell/mongo.js:L112
[20:57:56] <David_Connelly> …perhaps it has something to do with creating data and db folders. I have no clue
[20:58:54] <ehershey> David_Connelly: try just running: mongod
[21:14:43] <ehershey> or is it not letting you get that far
[23:11:19] <nicholasdipiazza> in general... how does one go about doing indexing when connecting to mongo db from a java api. do you do a "if db.mycollection doesn't exit, then do ensureIndex on it "?