是否可以仅从 mongo 文档中检索唯一值?

发布于 2024-11-05 00:53:17 字数 127 浏览 1 评论 0原文

我猜答案是否定的,但这可能吗?对于如此简单的事情来说,代码似乎太多了:

ary = []
obj.all.each {|o| ary << o[:foo]}
ary.uniq!

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!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何以笙箫默 2024-11-12 00:53:17

与 Mongo 分开,您可以在 Ruby 中更好地编写相同的功能,如下所示:

ary = obj.all.map{ |o| o[:foo] }.uniq

编辑:看起来 Mongo 通过 distinct 支持此功能:

ary = @db['pageviews'].distinct('ip-address')

请参阅 文档 了解更多详细信息。

Separate from Mongo, you can write that same functionality in Ruby better as:

ary = obj.all.map{ |o| o[:foo] }.uniq

Edit: It looks like Mongo supports this via distinct:

ary = @db['pageviews'].distinct('ip-address')

See the documentation for more details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文