ElasticSearch 在string类型的字段上做排序出错的解决方案
问题有个简单的需求:列出图书信息,并按照图书标题的字典顺序排列。原来认为会很简单: builder.addSort(SortBuilders.fieldSort("title").order(SortOrder.ASC)); 没想到确报这样的异常: Can’t sort on string types with more than one value per doc, ...