对不起,如果我的评论不清楚。您必须使用排序查询发送归类。
强度主要和次要都将提供不区分大小写的排序。确保在排序查询中使用确切的排序规则条件以利用索引。
Sort.Order order = new Sort.Order(ascending? Sort.Direction.ASC: Sort.Direction.DESC, sortKey);Query query = new Query(filter).with(new PageRequest(page, size, new Sort(order)));query.collation(Collation.of("en").strength(Collation.ComparisonLevel.secondary()));return mongoTemplate.find(query, clazz,collection);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)