Since the Heroku redis-to-go addon being shut down in August 2022, I'm wondering how to migrate my existing app on Heroku to use Heroku's own Heroku Redis addon instead. I am using a hobby tier with redis-to-go Nano at the moment.
Would the following two commands do the trick? (assuming no persistent data needs to be migrated)?
heroku addons:destroy redistogo
heroku addons:create heroku-redis:hobby-dev -a your-app-name
And then simply changing references in my code from REDISTOGO_URL
to REDIS_URL
?