我需要索引String类型的mongo集合中的列,但值很大。我倾向于使用Hashed Index,但无法弄清楚如何在Spring Data - Mongo API中标记索引以使用哈希值。
我目前创建索引的代码:
mongo.indexOps('mycollection').ensureIndex(new Index().on('names', Sort.Direction.ASC))
答案 0 :(得分:0)
看起来有一个打开的注释请求可以提供创建散列索引。我找到了这个Jira:https://jira.spring.io/browse/DATAMONGO-1183
我会尝试通过mongoOperations.indexOps()...