ElasticSearch
coffejoy
这个作者很懒,什么都没留下…
展开
-
ElasticSearch ——(三)基本操作 Getting Started
ElasticSearch增删改查PUT /lib/{ "settings": { "index":{ "number_of_shards":3, "number_of_replicas":0 } }}GET _search{ "query": { "match_all": {} }}PUT /lib/{...原创 2019-04-04 03:14:00 · 224 阅读 · 0 评论 -
ElasticSearch ——(一)介绍与基本概念
ElasticSearch增删改查PUT /lib/{ "settings": { "index":{ "number_of_shards":3, "number_of_replicas":0 } }}GET _search{ "query": { "match_all": {} }}PUT /lib/{...原创 2019-04-03 09:13:48 · 219 阅读 · 0 评论 -
ElasticSearch ——(十一)索引API —— 索引管理
创建索引删除索引获取索引原创 2019-04-07 12:29:04 · 267 阅读 · 0 评论 -
ElasticSearch ——(十)聚合
The aggregations framework helps provide aggregated data based on a search query. It is based on simple building blocks called aggregations, that can be composed in order to build complex summaries o...原创 2019-04-07 12:27:07 · 301 阅读 · 0 评论 -
ElasticSearch ——(九)搜索API
Routing路由When executing a search, it will be broadcast to all the index/indices shards (round robin between replicas). Which shards will be searched on can be controlled by providing the routing par...原创 2019-04-07 12:26:09 · 198 阅读 · 0 评论 -
ElasticSearch ——(八)API文档 多文档操作
Multi Get APIBulk APIDelete By Query APIUpdate By Query APIReindex API原创 2019-04-07 12:24:37 · 288 阅读 · 0 评论 -
ElasticSearch ——(七)API文档 单文档操作
Index APIGet APIDelete APIUpdate APIIndex APIindex名为twitter,type名为_doc,文档ID为1PUT twitter/_doc/1{ "user" : "kimchy", "post_date" : "2009-11-15T14:12:12", "message" : "trying out El...原创 2019-04-05 17:32:44 · 747 阅读 · 0 评论 -
ElasticSearch ——(六)API约定
The Elasticsearch REST APIs are exposed using JSON over HTTP.ES的REST API 是使用基于Http的JSON格式请求的。The conventions listed in this chapter can be applied throughout the REST API, unless otherwise specif...原创 2019-04-05 17:10:22 · 204 阅读 · 0 评论 -
ElasticSearch ——(五)升级 Upgrade Elasticsearch
Elasticsearch can usually be upgraded using a Rolling upgrade process so upgrading does not interrupt service. However, you might need to Reindex to upgrade indices created in older versions. Upgrade...原创 2019-04-04 09:34:36 · 1223 阅读 · 0 评论 -
ElasticSearch ——(四)准备 Set up Elasticsearch
准备ESThis section includes information on how to setup Elasticsearch and get it running, including:DownloadingInstallingStartingConfiguring本节包含如何安装、启动ES。包括:下载安装启动配置Supported platforms支持的...原创 2019-04-04 03:29:21 · 162 阅读 · 0 评论 -
ElasticSearch ——(二)基本操作 Getting Started
ElasticSearch增删改查PUT /lib/{ "settings": { "index":{ "number_of_shards":3, "number_of_replicas":0 } }}GET _search{ "query": { "match_all": {} }}PUT /lib/{...原创 2019-04-03 09:31:47 · 156 阅读 · 0 评论