dwaynemac
dwaynemac

Reputation: 1084

Communication between Heroku apps

I've build a distributed system consisting of several web-services and some web applications consuming them.

They are all hosted on Heroku.

Is there some way for request between these applications to be done "inside heroku" without going through the web.

Something analog to using localhost.

Upvotes: 8

Views: 3935

Answers (2)

fdr
fdr

Reputation: 467

You are maybe in luck: such a feature has currently reached the experimental phase.

Let me take a moment to underscore that: this feature may disappear or change at any time. It's not supported, but bug reports are appreciated. Don't build a bank with it. Don't get yourself in a position to be incredibly sad if severe problems are found that render it unshippable and it's aborted.

However, it is still cool, and here it is: containerized-network

Upvotes: 3

Nitzan Shaked
Nitzan Shaked

Reputation: 13598

You can use, for example, the pub-sub interface of any of the hosted Redis solutions. Or any of the message brokers (IronMQ, RabbitMQ) to pass messages.

Upvotes: 1

Related Questions