1、rest接口查询数据
rest查询:
http://localhost:9200/index_name/_search
查询表达式:文章来源:https://www.toymoban.com/news/detail-605211.html
{
"query": {
"wildcard": {
"accountID": {
"value": "v*"
}
}
}
}
postman请求截图:
2、使用Rest接口删除数据
rest删除数据:
http://localhost:9200/index_name/_delete_by_query
查询表达式:
{
"query": {
"wildcard": {
"accountID": {
"value": "V*"
}
}
}
}
postman请求截图:
文章来源地址https://www.toymoban.com/news/detail-605211.html
到了这里,关于es通过rest接口_search、_delete_by_query查询与删除数据的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!