elasticsearch排序

https://www.elastic.co/guide/cn/elasticsearch/guide/current/_Sorting.html

{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "title": "第一"
          }
        }
      ],
      "must_not": [],
      "should": []
    }
  },
  "sort": {
    "id": {
      "order": "asc"
    }
  },
  "from": 0,
  "size": 10
}

多级排序

假定我们想要结合使用 date 和 _score 进行查询,并且匹配的结果首先按照日期排序,然后按照相关性排序:

{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "title": "第一"
          }
        }
      ],
      "must_not": [],
      "should": []
    }
  },
  "sort": [
    {
      "id": {
        "order": "desc"
      }
    },
    {
      "_score": {
        "order": "desc"
      }
    }
  ],
  "from": 0,
  "size": 10
}

    A+
发布日期:2020年05月13日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: