class Event
include Mongoid::Document
field :status, type: Integer
index({ status: 1 }, { expire_after_seconds: 3600 })
end
我知道 MongoDB 和 Mongoid 的 TTL 选项。 https://github.com/mongoid/mongoid/commit/ac3c4bbe43c8756daff844c808c99b84f10834bc
但是它的 ttl 选项不起作用,因为我更新和升级了 ruby gems 和 brew 包。你有什么建议吗?