I'd like to query some DSLs to a remote elasticsearch server in Rails controllers.
I usually used Chrome extension Postman to query DSL to elasticsearch and see the result.
HTTP POST to http://elasticsearch.mydomain.com:9200/test_index/_search
Raw body:
{
"query" : {
"match" : {
"name" : "Philip"
}
}
}
Is it ok to request HTTP POST inside Rails controllers and fetch the response? If not, what's the preferable way to do that?
P.S.: I found there's a Ruby client for elasticsearch called Tire. But I'm not sure whether it fits for my needs.