我正在尝试使用 Casbah 的 ensureIndex API 使 Mongo 中的集合过期。
基于此文档 http://docs.mongodb.org/manual/tutorial/expire-data/
我正在使用 casbah 提出的 ensureIndex API
collection.ensureIndex(DBObject("status" -> 1, "expireAfterSeconds" -> 120))
在 2 分钟内使集合过期...
该集合没有被驱逐或过期。
我在这里还缺少什么吗?
谢谢