27
2015/08
空搜索最基本的搜索就是空搜索,没有指定任何的查询条件,返回所有文档:GET /_search 响应内容为:{
"hits" : {
"total" : 14,
"hits" : [
{
"_index": "us",
"_type": "tweet",
"_id": "7",
"_score": 1,
"_source": {
"date": "2014-09-17",
"name": "John Smith",
"tweet": "The Query DSL is really powerful and flexible",
"user_id": 2
}
},
... 9 RESULTS REMOVED ...
],
"m
#技术帖
#龙潭书斋
#检索
#search