摘要:
elasticsearch中的布尔查询 例如查询年龄是25岁,输入王者荣耀的英雄 GET test1/_search { "query": { "bool": { "must": [ { "match": { "age": "25" } }, { "match": { "location": "王者 阅读全文
posted @ 2021-12-04 13:44
竹石2020
阅读(61)
评论(0)
推荐(0)
摘要:
elasticsearch的查询方法 创建索引 PUT test1 添加数据,可以指定id POST test1/_doc/2 { "name":"刘备", "age":54, "location":"蜀国" } 查询操作两种方法 · 第一种 GET test1/_search?q=location 阅读全文
posted @ 2021-12-04 11:32
竹石2020
阅读(221)
评论(0)
推荐(0)