elasticsearch
黄熊
我有白熊了
展开
-
elasticSearch 新增数据
elasticSearch 新增数据在window下需要注意的是”“问题,需要转义,不然会报错eg1: window版curl -XPOST localhost:9200/test/fulltext/26 -d "{\"content\":\"hi\",\"title\":\"nihao\",\"keyword\":\"ddd\",\"catid\":\"99\"}"ps:如果不转义则会报{"err原创 2015-08-15 15:06:17 · 1431 阅读 · 0 评论 -
elasicsearch suggest用法
5. es suggest用法5.1 第一步:要使用suggest先配置好 curl -XPUT 192.168.2.20:9200/xiaogu -d' //新建一个xiaogu的索引 { "mappings": { "product": { //这个是_type "properties": {翻译 2015-08-15 17:26:29 · 1173 阅读 · 0 评论 -
ElasticSearch 新建mapping
url : :9200/xx_index putxx_index 是索引名字{ "mappings": { "search_log" :{ //这是type "properties":{ "search_keyword" :{ "ty原创 2015-12-29 12:46:02 · 905 阅读 · 0 评论 -
ElasticSearch 新建索引
首先要明白什么是索引举传统关系型数据库mysql为例 MySQL: DB -> table -> row -> field ES: Index -> class -> document ->field 其实跟关系型数据库很像新建索引 url : 127.0.0.1:9200/sns //这里的sns就是索引名称method : put{ "setting原创 2015-12-18 22:51:49 · 671 阅读 · 0 评论