Elasticsearch7.0查询清表等语句》自用

GET _all/_settings
GET /doctor-index
GET /doctor-index/_mapping
GET /doctor-index/words/_search?q=name:aha
GET /doctor-index/_search
{
“query”: {
“match_all”: {
}
}
}
GET /doctor-index/doctor/_search?q=doctorName:平
GET /doctor-index/doctor/_search?q=hospitalName:北大深圳
GET /doctor-index/_search

put /lib/user/44
{
“name”:“Jane”,
“age”:10,
“about”:“she like play baskball”
}

GET /lib
GET /lib/_mapping
GET /lib/user/_search?q=name:Jane

GET /wordlist/_search
{
“query”: {
“match_all”: {
}
}
}

GET _analyze
{
“analyzer”: “ik_max_word”,
“text”: “你好吗?我有一句话要对你说呀。”
}

GET test1/_search
GET wordlist/_search
GET _all
DELETE _all

猜你喜欢

转载自blog.csdn.net/hello_mr_anan/article/details/106068437