[01:10:09] <hunterp> I have a mongo question here: http://stackoverflow.com/questions/21792016/what-is-correct-mongoid-relation-for-a-parentless-object-that-eventually-belongs
[01:19:13] <qw3rtman> Sounds good. Thanks for your input.
[02:51:41] <acidjazz> if i have a document w/ an array inside of options.. and i want to see if any of those options match options in my query, is that where $in can be usefl?
[03:12:17] <Soothsayer> "While you can create multikey compound indexes, at most one field in a compound index may hold an array. "
[03:12:58] <Soothsayer> Which means in a Product document if I have two fields, 1 is "categories": array of category ids and the other "additionalAttributes" which is an array of sub documents { id: int, val: <string> }
[03:13:16] <Soothsayer> I can't have a compound index that includes categories and additionalAttributes together?