Is it possible for two applications on the same heroku account to access the same RedisToGo server?

Is it possible for two applications on the same heroku account to access the same RedisToGo server? We have two applications that need web access, but have very different structures. Thus, they cannot be dyno types in one application, but it would be very nice if you could perform tasks through Redis for another.

+5
source share
1 answer

Yes, just use heroku configin the application that has redistogo, and find the REDISTOGO_URL configuration variable and then copy this value and then create the heroku configuration variable in the second application with the same value

heroku config:add REDISTOGO_URL=<value_from_app_a>

+14
source

All Articles