使用 MongoMapper 的索引和上限集合
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需下拉到 ruby 驱动程序即可创建集合。
http://api.mongodb.org/ruby/1.0 .7/Mongo/DB.html#create_collection-instance_method
在初始化程序或其他东西中执行此操作。
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
Do that in an initializer or something.