有一篇关于使用 Salat 的组合键的帖子,但缺少有关确保索引的信息(来自 mongo-db 控制台,db.collection.ensureIndex({someField : 1})
)。浏览 Salat 源代码,我没有看到将字段标记为需要索引的注释,有没有办法做到这一点?
可以通过自己直接从 DAO 对象中访问MongoCollection
(请参阅:此论坛帖子)。 例如:
object AlphaDAO extends SalatDAO[Alpha, Int](collection = MongoConnection()("test_db")("test_coll")) {
val beta = new ChildCollection[Beta, Int](
collection = MongoConnection()("test_db")("test_col1_subcol1"),
parentIdField = "alphaId") {}
import com.mongodb.casbah.Imports._
collection.ensureIndex(DBObject("some.field" -> 1, "anotherField" -> 1))
beta.collection.ensureIndex(DBObject("some.field" -> 1, "anotherField" -> 1))
}