I’m guessing the answer is no, but is this possible? It seems like this is too much code for something so simple:
ary = []
obj.all.each {|o| ary << o[:foo]}
ary.uniq!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Separate from Mongo, you can write that same functionality in Ruby better as:
Edit: It looks like Mongo supports this via
distinct:See the documentation for more details.