我使用java mongotemplate查询mongo:
TextCriteria criteria = TextCriteria.forDefaultLanguage()
.matchingAny(searchText);
Query query = TextQuery.queryText(criteria);
return mongoTemplate.find(query, User.class, "user");
如何使其不区分大小写?
我在mongo中使用这样的查询:
db.user.find( { $text: { $search: "John" } } )
它在每个索引字段中搜索此文本。我需要不区分大小写。