在 Rails 项目中设置索引或配置上限集合的最佳方法是什么?
根据我的发现,似乎一个好方法是将这个配置保存在初始化程序中。
设置索引的命令是ModelName.ensure_index :key
,但是上限集合的命令是什么?
在 Rails 项目中设置索引或配置上限集合的最佳方法是什么?
根据我的发现,似乎一个好方法是将这个配置保存在初始化程序中。
设置索引的命令是ModelName.ensure_index :key
,但是上限集合的命令是什么?
只需下拉到 ruby 驱动程序即可创建集合。
http://api.mongodb.org/ruby/1.0.7/Mongo/DB.html#create_collection-instance_method
Foo.database.create_collection(:foo, :capped => true)
在初始化程序或其他东西中执行此操作。