2016-06-27 97 views

回答

0

是的,你可以簡單地要求一個單一的文件(size: 1)和整理通過降低時間戳

POST index/_search 
{ 
    "size": 1, 
    "sort": { "timestamp": "desc"}, 
    "query": { 
     "match_all": {} 
    } 
} 
+0

嘿,謝謝你的提示。我發現其他地方的答案: GET指數 - * /類型/ _search { 「查詢」:{ 「MATCH_ALL」:{} }, 「大小」:1, 「排序」:[ { 「時間戳」:{ 「序」: 「遞減」 }} ] } 我想知道如果在使用PHP API這樣做的方式。 – ScipioAfricanus

+0

是的,[看到這個](https://github.com/elastic/elasticsearch-php#search-for-a-document) – Val

相關問題