| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
pdce
9年前发布

Elasticsearch 的交互库:Elastomer-Client

Elastomer-Client 为 ElasticSearch API endpoint 提供一个一对一的映射。API 通过你想要实现的来分解为逻辑部分和访问,每一个逻辑部分代表一个客户端类。

示例代码:

require 'elastomer/client'  client = Elastomer::Client.new     index = client.index('推ter')  index.create(   :settings => { 'index.number_of_shards' => 3 },   :mappings => {   :tweet => {   :_source => { :enabled => true },   :_all    => { :enabled => false },   :properties => {   :author => {    :type => 'string',   :index => 'not_analyzed' },   :tweet  => { :type => 'string', :analyze => 'standard' }        }      }    }  )     index.exists?     index.exists? :type => 'tweet'index.delete

项目主页:http://www.open-open.com/lib/view/home/1434031710176

 本文由用户 pdce 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1434031710176.html
ElasticSearch 搜索引擎 Elastomer-Client