elasticsearch
qq_43475081
这个作者很懒,什么都没留下…
展开
-
elasticsearch - 使用大全
1.term term 根据 keyword字段 精确匹配 实例 GET index3/_search { "query": { "term": { "book_name": "设计" } } } 2. terms terms 根据 keyword字段 精确匹配 实例 GET index3/_search { "query": { "terms": { "book_name": ["设计", "李四"] } } } 3. m原创 2021-11-28 18:09:22 · 958 阅读 · 0 评论 -
elasticsearch - kibana操作es
【基本方法】 1.创建索引 PUT index1 PUT index3 { “mappings”: { “properties”: { “book_id”:{ “type”: “long” }, “book_name”: { “type”: “text” }, “book_author”: { “type”: “keyword” }, “book_price”: { “type”: “float” }, “book_desc”: { “type”: “text” } } } } 索引是一个逻辑单元,es中的原创 2021-11-28 15:10:04 · 1444 阅读 · 0 评论