elasticsearch

Posted by 夏泽民

插入一条数据 curl -XPUT ‘localhost:9200/shakespeare?pretty’ -H ‘Content-Type: application/json’ -d’ { “mappings”: { “doc”: { “properties”: { “speaker”: {“type”: “keyword”}, “play_name”: {“type”: “keyword”}, “line_id”: {“type”: “integer”}, “speech_number”: {“type”: “integer”} } } } } ‘ 插入文件 curl -H ‘Content-Type: application/x-ndjson’ -XPOST ‘localhost:9200/shakespeare/doc/_bulk?pretty’ –data-binary @shakespeare_6.0.json



dsl

Posted by 夏泽民

ElasticSearch具有和端点(_bulk)用于用单个请求索引多个文档 _search端点 现在已经把一些电影信息放入了索引,可以通过搜索看看是否可找到它们。 为了使用ElasticSearch进行搜索,我们使用_search端点,可选择使用索引和类型。也就是说,按照以下模式向URL发出请求://_search。其中,index和type都是可选的。



config

Posted by 夏泽民

Elasticsearch由多个模块组成,这些模块负责其功能。 这些模块有以下两种类型的设置 -



aggregations

Posted by 夏泽民

框架集合由搜索查询选择的所有数据。框架中包含许多构建块,有助于构建复杂的数据描述或摘要。聚合的基本结构如下所示 -



_search

Posted by 夏泽民

在Elasticsearch中,通过使用基于JSON的查询进行搜索。 查询由两个子句组成 -



Search

Popular posts

Anything in here will be replaced on browsers that support the canvas element

Recent posts

This blog is maintained by 夏泽民

Get in touch with me at 465474307@qq.com

Subscribe to our mailing list

* indicates required