1、install
下载、解压
2、常见概念
index、type
3、es简单实用
创建索引:
curl -XPUT 'localhost:9200/customer?pretty'
curl -XPUT 'localhost:9200/test/external/1?pretty' -d '{"name":"John Doe"}'
下载、解压
index、type
创建索引:
curl -XPUT 'localhost:9200/customer?pretty'
curl -XPUT 'localhost:9200/test/external/1?pretty' -d '{"name":"John Doe"}'
转载于:https://my.oschina.net/aspoman/blog/389770