ElasticSearch的Query String語法基本介紹
阿新 • • 發佈:2019-01-09
1.根據欄位名查詢(Field names)
-
介面(interface)為app
interface: app
-
介面(interface)為app或live
interface: (app OR live)
-
精確匹配, 介面是app
interface: “app”
2.萬用字元(Fuzziness)
‘?’表示單個字元,’*’表示0個或多個字元
- 查詢視訊域名
domain: *.video.sina.com.cn
3.範圍查詢(Range)
-
502次數大於等於50
code502: [50 TO *]
-
總數大於等於10且小於50
total: [10 TO 50}
4.布林運算(Boolean operators)
-
AND
domain: *.video.sina.com.cn AND interface: app
-
NOT
NOT interface: app
-
OR
interface: app OR interface: live
5.正則表示式(Regular expressions)
-
匹配200、300、400、500狀態碼
status:/[2-5]00/
-
匹配兩個域名
domain:/[nl].portal.com/