1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
| { "took": 1, "timed_out": false, "_shards": { "total": 1, "successful": 1, "skipped": 0, "failed": 0 }, "hits": { "total": { "value": 3, "relation": "eq" }, "max_score": 0.40388194, "hits": [ { "_index": "blog", "_type": "doc", "_id": "jV3J-HIBNIzRDJgGMzQj", "_score": 0.40388194, "_source": { "title": "java编程思想", "price": 99.99, "author": "埃克尔" } }, { "_index": "blog", "_type": "doc", "_id": "Jsrp_XIBKoNLJaiRi4mV", "_score": 0.35667494, "_source": { "title": "Java并发编程实战", "price": 69, "author": " Brian Goetz" } }, { "_index": "blog", "_type": "doc", "_id": "J8rq_XIBKoNLJaiRW4n4", "_score": 0.33698124, "_source": { "title": "Effective java 中文版(第2版)", "price": 52.00, "author": " [美] Joshua Bloch" } } ] } }
|