I have a node.js app, using RedisToGo and running in Heroku. I would like to copy the Redis To Go database to localhost for testing.
When developing Ruby on Rails app, I can use heroku db:pull
command. Is there any similiar command which I can use for node.js and Redis?
Thanks.
You can slave your local instance of Redis to the RedisToGo instance - http://redistogo.com/documentation/exporting
There is also another guide available from the redistogo support knowledge base http://support.redistogo.com/kb/info/replicate-your-rtg-data-onto-your-local-machine Same result different method.