python Elasticsearch 排序

sort 与query是同级的

Elasticsearch python sort

{
  "sort": [
    {
      "_score": {
        "order": "desc"
      }
    }
  ],
  "query": {
    "function_score": {
      "query": {
        "match_all": {}
      },
      "script_score": {
        "lang": "python",
        "script": [
          "if _score:",
          "  _score"
        ]
      },
      "boost_mode": "replace"
    }
  },
  "track_scores": true
}

猜你喜欢

转载自blog.csdn.net/jacke121/article/details/81179113