[00:00:07] <laprice> Mark_: what are you trying to do exactly? You might want to look at http://docs.mongodb.org/manual/applications/data-models-tree-structures/
[00:08:24] <zma> I need to form game database, so some branching factor is included.
[00:08:41] <zma> Any links or information how to do that with mongo would be nice
[00:09:56] <zma> my google-fu with following keywords doesn't seem to bring up anything useful: mongodb branching factor
[00:10:10] <zma> So I'd assume the terminology from database point of view is different
[00:26:36] <Mark_> laprice, telephone numbers consist of 10 digits
[00:50:20] <Mark_> so just hitting key names directly is very fast, index-less and lightweight
[00:50:36] <Mark_> but if someone *wanted* to say, pull data for a range of numbers, or aggreggate it
[00:50:43] <Mark_> shrug, i guess i could just say 'map/reduce it!'
[00:53:17] <Mark_> i guess i just need to get used to nosql
[00:53:25] <Mark_> im used to bending even the most slopped together shit to my will
[00:53:41] <Mark_> alter table add index alter table add index etc etc
[00:55:04] <Mark_> and theres no particular reason this couldnt stay as mysql, but im interested in 1. learning mongo, 2. heroku has free mongo and i can just put the lookup app on that
[00:55:18] <Mark_> and sync it to github for anyone else to not have to reinvent the miserable wheel of gathering telco data
[00:55:30] <Mark_> (they make it hard to find on purpose so that providers have to buy telecordia data for $$$$$)
[00:56:09] <Mark_> infact my data gathering script is broken because they switched from xls, which was easy to hax up with catdoc
[01:02:06] <Mark_> us and canada all fall under the nanpa umbrella, so its relatively easy
[01:02:14] <Mark_> they have 'rate centers' a nd such
[01:02:19] <Mark_> (great for poor mans caller id :P)
[01:02:58] <Jadenn> when i lived in raymond we only ever memorized the last 4 digits, or communicated as such because the prefix was the same everywhere
[01:05:22] <Jadenn> town of 8 thousand i am walking distance from 4 gas stations
[01:51:58] <Senor> I need to save data from ram to database in a fixed interval ,is mongodb fit for this case?
[04:24:57] <AlbireoX> Hi, how can I upsert a value within an array in a document?
[04:26:19] <AlbireoX> I have a document { foo: [ { id: 1, data: xxx }, { id: 2, data: xyz } ] } and I want to update the data field of a certain element of the array. If something with the given id doesn't exist I want to $push to that array.
[06:49:18] <george2> How can I remove all documents where a certain field does not exist?
[06:50:12] <george2> I recently started saving a new "text" field in my documents, and I need to get rid of all the old documents that don't have it.
[18:07:33] <dgray> I want to truncate a file to an arbitrary size in gridfs. Will I have to manually delete the chunks, update the file size, load the last chunk in the file and manually truncate it in memory on the client?
[18:54:49] <Ephexeve> Hey guys, I wonder, is there a way to add a password to a database? So the only way to query it is with a password? otherwise there is NO way to access it?
[21:59:05] <bdiu> I have all my locations stored as GeoJSON geometries (i.e., type = Point)... is it best to index these as 2dsphere or 2d? Is there any reason (other than accuracy) to choose one way over another?