Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.