in order to use RedisToGo on development, I need to set the environment variable as follows: ENV["REDISTOGO_URL"] = 'redis://username:[email protected]:6389'
How can I create a redis connection with the username, password and my.host setting, assuming I already have redis-server installed? I think there's a commandline command I have used to achieve this before but I can't seem to remember it now and I can't find any information on this online. Suggestions?
export REDISTOGO_URL='redis://username:[email protected]:6389'? - Brian