Mongoid.master.collection("seq").find_and_modify({
:query => {:_id => self.class.name},
:update => {'$inc' => {:next => 1}},
:new => true,
:upsert => true
})["next"]
它在 mongoid 2.4.9 中运行良好,但是当我使用 mongoid 3.0.0 时,出现错误
NoMethodError in PostsController#new
undefined method `master' for Mongoid:Module
Mongoid 3.0.0 不支持 Mongoid.master ?