1GET /test_index/test_type/_search?q=test_field:test
2GET /test_index/test_type/_search?q=+test_field:test 必須包含,其實跟上面同樣
3GET /test_index/test_type/_search?q=-test_field:test 不包含
複製代碼
一個是掌握q=field
:search content
的語法,還有一個是掌握+和-的含義json
在搜索的時候,若是沒有指定搜索的字段,就默認搜索 _all field
, 其中包含了全部 field 的值。bash
es中的_all元數據,在創建索引的時候,咱們插入一條document,它裏面包含了多個field,此時,es會自動將多個field的值,所有用字符串的方式串聯起來,變成一個長的字符串,做爲_all field的值,同時創建索引。app
例如:ui
1{
2 "name": "jack",
3 "age": 26,
4 "email": "jack@sina.com",
5 "address": "guangzhou"
6}
複製代碼
"jack 26 jack@sina.com guangzhou",做爲這一條document的_all field的值,同時進行分詞後創建對應的倒排索引.spa
在生產環境下不使用。code