
elasticsearch
maslii
独立之精神,自由之思想
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
全文检索 elasticsearch 与 数据库的对比
MySQL ES Database Index Table Type Row Document Column Field Schema Mapping原创 2020-03-13 15:12:49 · 1528 阅读 · 0 评论 -
ES 使用kibana创建索引,常见的增删改查
#### 例子来简单介绍一下ES的增删改查 #### # 新建一个test索引,里面有四个字段 PUT /test { "mappings": { "properties": { "title":{"type": "text"}, "name":{"type": "text"}, "age":{"type": "integer"}, "c...原创 2020-03-13 15:07:13 · 10542 阅读 · 0 评论