gpt4 book ai didi

elasticsearch - 如何使用Elasticsearch 7对字段进行排序

转载 作者:行者123 更新时间:2023-12-03 00:49:13 28 4
gpt4 key购买 nike

我尝试对带有标题的结果进行排序,但无法正常工作。

查询:

GET /products/_search
{
"sort": [
{ "title.keyword": { "order": "desc" }}
],
"query": {
....
},

}

制图
"mappings" : {
"properties" : {
...
"title" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
},
...
}
}

结果
{
"took" : 3,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 826,
"relation" : "eq"
},
"max_score" : null,
"hits" : [
{
"_index" : "products",
"_type" : "_doc",
"_id" : "1457580605505",
"_score" : null,
"_source" : {
"id" : 1457580605505,
"title" : "Étui-portefeuille multifonction pour iPhone", <-----
"body_html" : "description here",

谷歌搜索后,我没有找到适合我的情况的正确答案。可能是因为我使用的是ES7和与之不兼容的解决方案。
我有多个以Z开头的产品...
谢谢

最佳答案

É在字符排序上排在Z之后。 (É与E不同)。当您要对某些 flex 字符串进行排序时,应对字段应用规范化器以实现自然排序。

您应该转到此文档页面:normalizer

在您的情况下,因为您使用法语,所以规范化器应由小写字母和ascii_folding过滤器组成。因此,文档页面中的示例应完全符合您的需求。

关于elasticsearch - 如何使用Elasticsearch 7对字段进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55968613/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com