elasticsearch 笔记十三:query string

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qzqanzc/article/details/83347268
GET /test_index/test_type/_search?q=test_field:test   //包含test的搜索出来
GET /test_index/test_type/_search?q=+test_field:test  //包含test的搜索出来
GET /test_index/test_type/_search?q=-test_field:test //不包含test搜索出来

猜你喜欢

转载自blog.csdn.net/qzqanzc/article/details/83347268