[12:14:38] <kenalex> from what I read on mongodb site, it is pretty convienient to for designing applications that have changing data structure requirements
[12:19:50] <StephenLynx> all files are saved on gridfs
[12:20:19] <kenalex> I am considering using mongodb for a catalog application at work to store cell site information where there are diffrent cell sites with diffrent attributes.
[12:21:10] <StephenLynx> you can just have a field with the type of the document
[12:21:36] <StephenLynx> if they are all under the same type of item and have very similar fields, it makes sense to put them on the same collection
[12:21:53] <StephenLynx> even if some data differs
[12:24:10] <kenalex> the interesting about the cellsite data is that they can have diffrent attributes. and new site types can be added to they new that may have additional attributes from the existing sites
[12:24:56] <kenalex> i tried it with a relational database using a normalize schema and I ended up about 6 tables just for the cell site information
[22:07:21] <dman777_alter> StephenLynx: I get back updated {"ok":1,"nModified":0,"n":0} in the write result....not sure what that means since it's diff than mongodb documentation. but it's upposed to be raw...passed straight back from mongodb
[23:20:13] <kaimast> hi. i have a replica set that works fine when inserting data. but reading is slow. really slow. usually it takes 500ms for a query (even on an empty database)
[23:20:20] <kaimast> any ideas what i could be doing wrong?
[23:20:30] <kaimast> i am using a 2d index if that matters.