1. {
    2. "took": 10, // 花费的时间
    3. "time_out": false,
    4. "_shards": {
    5. "total": 1,
    6. "successful": 1,
    7. "skipped: 0,
    8. "failed": 0
    9. },
    10. "hits": {
    11. "total": 4575, // 符合条件的总文档数
    12. "max_score": 1,
    13. "hits": [ // 结果集,默认前10个文档
    14. {
    15. "_index": "indexName", // 索引名
    16. "_type": "typeName",
    17. "_id": "123", // 文档id
    18. "_score": 1, // 相关度评分
    19. "_source": { // 文档原始信息
    20. ...
    21. }
    22. }
    23. ]
    24. }
    25. }