PMXBOT Log file Viewer

Help | Karma | Search:

#mongodb logs for Sunday the 15th of December, 2013

(Back to #mongodb overview) (Back to channel listing) (Animate logs)
[04:48:23] <Logicgate> hey guys
[04:48:34] <Logicgate> is there a way to figure out if a collection is capped?
[04:57:27] <Guest59609> Logicgate, goooood question
[05:02:12] <Logicgate> as in full
[05:02:19] <Logicgate> not if it has the capped property
[05:08:09] <Logicgate> I need to know when a collection is full
[06:58:21] <OilFanInYYC> I have a db setup with 3 collections (league,roster,schedule). The schedule collection is not populated yet but I have a JSON file with data like [{"Date": "2013-09-19", "Away": "Swift Current", "Home": "Regina"},{"Date": "2013-09-20","Away": "Brandon","Home": "Moose Jaw"}...]. There are 3 things I need to adjust for the JSON data to be input info into the schedule. I want the date to be EPOC time, and the home and away teams to us
[06:58:22] <OilFanInYYC> e the abbreviated name from the league collection. I'm looking for a javascript file/function to allow me to do this but I keep running into problems. Any help would be fantastic.
[09:41:41] <zec_> Why would I want to use "MongoDb for Windows Azure" over the standard "MongoDb for Windows"? - I guess that the windows azure version provides something extra, but what?
[09:51:04] <kali> azure is microsoft cloud
[09:51:18] <kali> you want the windows one
[09:54:16] <zec_> kali, yea. - But I AM using Windows Azure. However both the Windows Azure and Windows version seems to work just fine?
[10:01:35] <kali> zec_: you really need to find somebody who has windows knownledge. i haven't work with it for about a decade
[10:02:32] <kali> more like a decade and a half, actually
[10:02:36] <kali> wow, i'm getting ol
[10:07:59] <zec_> kali, No problem - thanks anyway :)
[18:12:52] <jordz> When dealing with fairly large arrays, what's the performance difference when using push vs addToSet, noticeable? anyone reckon?
[18:31:41] <cheeser> $addToSet involves a scan where $push doesn't
[18:43:59] <jordz> Yeah I changed it to use push rather than addToSet
[18:44:09] <jordz> although it didn't seem to make much difference in perforamnce
[18:44:18] <jordz> i suppose the documents aren't big enough to see the difference
[18:44:33] <jordz> The more I grow these documents the slower this is getting
[18:44:44] <jordz> I'm trying to keep updates (pushes fast)
[18:45:11] <jordz> but the documents aren't being moved
[22:21:48] <joannac> win 48
[22:23:40] <elizar> waddup!?
[23:23:19] <ronaldroe> I have a quick question about Mongo with PHP
[23:23:53] <ronaldroe> How would I query a collection, then store the result in a variable?
[23:27:26] <Derick> ronaldroe: http://docs.php.net/manual/en/mongocollection.find.php combined with iterator_to_array ?