[14:16:25] <saby> I have a collection containing subfields like this http://pastebin.com/BjbHfgku
[14:17:05] <saby> i want to make a query such that I can fetch records containing all the 4 status fields but the fields should have either a processed value or failed value
[14:19:21] <saby> something like (OR(status.sentiment=processed, status.sentiment=failure)) AND (OR(status.aaa=processed, status.aaa=failed)) AND ...
[14:25:46] <pats_Toms> mongodb have something like lists on redis?
[14:27:49] <Derick> mongodb has arrays for field values... Not quite sure what you mean by a list?
[14:28:47] <pats_Toms> seems like I have some wrong logic in my head
[17:25:40] <skrammy> worse than cutting power to an instance in non-repair mode?
[17:26:24] <skrammy> basically, im repairing a 5million object collection and was hoping itd go faster so that i can go out in 3 hours.. not clear if itll be done by then and then there are other large collections itll have to repair too
[17:28:06] <skrammy> i wish i could stop it and change the EC2 instance to bigger...
[20:14:12] <lobbin> Any hints on how to store localized content for easy access? Should I mimic the complete document or should I create attributes for each language, such as name, name_sv, name_dk, etc?
[20:27:46] <AAA_awright> lobbin: Generally different encodings with different media types, languages, etc, get different resources, so I'm inclined to say put them in different documents with a "language" tag
[20:31:57] <lobbin> AAA_awright: Ok, in this case it'll only be a few fields, so perhaps that would be overdoing it, still thinking about it :)