残りのクライアントを使用して、以下のクエリ ( docで指定) を実行するにはどうすればよいですか。
curl -XGET 'http://localhost:9200/twitter/tweet/_search' -d '{
"query" : {
"term" : { "user" : "kimchy" }
}
}
'
私はこれをやってみました:
q = '{
"query" : {
"term" : { "user" : "kimchy" }
}
}
'
r = JSON.parse(RestClient.get('http://localhost:9200/twitter/tweet/_search', q))
これによりエラーが発生しました:
in `process_url_params': undefined method `delete_if' for #<String:0x8b12e18> (NoMethodError)
from /home/socialapps/.rvm/gems/ruby-1.9.3-p194/gems/rest-client-1.6.7/lib/restclient/request.rb:40:in `initialize'
from /home/socialapps/.rvm/gems/ruby-1.9.3-p194/gems/rest-client-1.6.7/lib/restclient/request.rb:33:in `new'
from /home/socialapps/.rvm/gems/ruby-1.9.3-p194/gems/rest-client-1.6.7/lib/restclient/request.rb:33:in `execute'
from /home/socialapps/.rvm/gems/ruby-1.9.3-p194/gems/rest-client-1.6.7/lib/restclient.rb:68:in `get'
from get_check2.rb:12:in `<main>'
を使用して同じことを行うとRestClient.post
、正しい結果が得られます。しかし、elasticsearch のドキュメントではXGET
、検索クエリではなく、curl コマンドで使用されていXPOST
ます。RestClient.get
メソッドを機能させるにはどうすればよいですか?
このアクションを実行する代替/より良い方法がある場合は、提案してください。