是不是違背REST風格的方法來傳遞請求正文與GET請求?Elasticsearch GET請求與請求正文
例如以過濾Elasticsearch
一些信息curl localhost:9200/megacorp/employee/_search -d '{"query" : {"filtered" : {"filter" : {"range" : {"age" : { "gt" : 30 }}},"query" : {"match" : {"last_name" : "smith"}}}}}'
一些工具甚至設計,以避免請求主體的GET請求(如郵遞員)
看到這個答案可能有所幫助:http://stackoverflow.com/questions/34795053/es-keeps-returning-every-document/34796014#34796014 – Val
有關GET和Body的詳細解答 - https://stackoverflow.com/a/8502004/1589840 – serhiisavruk