I'm digging into Tire gem documentation. I need some way to search against another elastic instance or create index on another elastic instance. Don't ask me why - it's architecture problem.
We can define some basic settings within block:
Tire.configure do
url 'http://localhost:9200/'
end
What should I do to run some command against another instance The first idea is create subclass and redefine url, but it's sounds bad for me. Does anybody know clean way to do thats.