美文网首页
Elasticsearch 随机返回数据 API

Elasticsearch 随机返回数据 API

作者: 会长__ | 来源:发表于2018-12-18 16:16 被阅读200次
{
  "from": 0,
  "size": 10,//返回十条数据
  "query": {
    "bool": {
      "must": {
        "term": {
          "level": 1//查询条件。
        }
      }
    }
  },
  "_source": {
    "includes": [
      "title"   //返回的字段
    ],
    "excludes": []
  },
  "sort": {//排序
    "_script": { // key原封不动
      "script": "Math.random()",//随机排序
      "type": "number", 
      "params": {}, // 如果这个参数报错直接干掉
      "order": "asc"
    }
  }
}

相关文章

网友评论

      本文标题:Elasticsearch 随机返回数据 API

      本文链接:https://www.haomeiwen.com/subject/lkylkqtx.html