【发布时间】:2018-02-23 19:36:56
【问题描述】:
我正在尝试使用 Elasticsearch PUT 和 ruby 中的 Elasticsearch gem 插入数据,但我收到方法未找到错误。
Here is the sample code:
def self.insert_data_in_es
name = (here I am giving the url)
body = (actual data)
Elasticsearch::API::Indices::Actions.put_template(name: name, body:
body)
end
Error :
NoMethodError: undefined method `put_template' for Elasticsearch::API::Indices::Actions:Module
还有其他方法吗?
【问题讨论】:
标签: ruby elasticsearch rubygems