搜索所有內容
# curl -XGET 'http://localhost:9200/_search?pretty' # curl -XGET 'http://localhost:9200/_all/_search?pretty'
指定 _index 搜索
# curl -XGET 'http://localhost:9200/website/_search?pretty' # curl -XGET 'http://localhost:9200/website/news/_search?pretty'
指定 _type 搜索
# curl -XGET 'http://localhost:9200/website,twitter/_search?pretty' # curl -XGET 'http://localhost:9200/website/news,blog/_search?pretty' # curl -XGET 'http://localhost:9200/website,twitter/news,blog/_search?pretty'
所有 _index 包含指定 _type 搜索
# curl -XGET 'http://localhost:9200/_all/news,blog/_search?pretty'
字元串搜索
# curl -XGET 'http://localhost:9200/_all/_search?q=neo&pretty'
同時滿足兩個條件
+name:neo +age:30
查找name為mary 或者 john的數據
+name:(mary john)
查詢姓名是neo或者jam並且年齡小於30歲同時1980-09-10之後出生的
+name:(neo jam) +age:<30 +date:>1980-09-10