使用 MongoMapper 的索引和上限集合

发布于 2024-09-27 12:35:16 字数 152 浏览 1 评论 0原文

在 Rails 项目中设置索引或配置上限集合的最佳方法是什么?

根据我的发现,似乎一个好方法是将这个配置保留在初始值设定项中。

设置索引的命令是 ModelName.ensure_index :key,但是设置上限集合的命令是什么?

What is the best way to set up an index or configure a capped collections in a Rails project?

From what I've found, it seems that a good way would be to keep this configuration in an initializer.

The command for setting up an index is ModelName.ensure_index :key, but what is the command for a capped collection?

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

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

发布评论

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

评论(1

我还不会笑 2024-10-04 12:35:16

只需下拉到 ruby​​ 驱动程序即可创建集合。

http://api.mongodb.org/ruby/1.0 .7/Mongo/DB.html#create_collection-instance_method

Foo.database.create_collection(:foo, :capped => true)

在初始化程序或其他东西中执行此操作。

Just drop down to the ruby driver to create the collection.

http://api.mongodb.org/ruby/1.0.7/Mongo/DB.html#create_collection-instance_method

Foo.database.create_collection(:foo, :capped => true)

Do that in an initializer or something.

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