I got a problem similar to this one:
Connecting to Redis To Go with PHP
Basically, I have this uri in redis to go:
redis://myusername:[email protected]:9998
and I am trying to connect to it using phpredis:
$r->connect("redis://myusername:[email protected]:9998/");
And it's not working. In that other answer it is suggested to use predis, but I just don't want to. I should be free to use whatever client I want.
Any ideas?
Thanks in advance
I have not used redistogo, but maybe you could try?
$r->connect('herring.redistogo.com', 9998);
$r->auth('myusername:foopassword');