I'm planning on adding a second Redis instance to my Rails application. From reading the docs, https://devcenter.heroku.com/articles/heroku-redis#establish-the-primary-instance, the best practice for doing this on Heroku seems to be to designate one of the instances as the "primary" instance, point to it with the REDIS_URL config var, and have another config var with some other name pointing to the second instance.
This doesn't quite suit me, since I have more semantic names I'd like to use.
How important is it to designate one of my instances as "primary"? What do I get by doing so? The docs contain sentences like 'Heroku recommends using the REDIS_URL config var to store the location of the primary instance' but don't go into further detail.