我遇到了类似这个的问题:
Connecting to Redis To Go with PHP
基本上,我在redis中有这个uri:
redis的://名为myUsername:foopassword@herring.redistogo.com:9998
我正在尝试使用phpredis连接到它:
$ R->连接( “redis的://名为myUsername:foopassword@herring.redistogo.com:9998 /”);
它不起作用。在另一个答案中建议使用predis,但我只是不想。我可以自由使用我想要的任何客户端。
有什么想法吗?
提前致谢
答案 0 :(得分:2)
请改用:
$r = new Redis();
$r->connect("herring.redistogo.com", 9998);
$r->auth("foopassword");
如果不起作用,请尝试$r->auth("myusername:foopassword")
。
您可以在the official GitHub page上找到phpredis文档。
答案 1 :(得分:0)
我没有使用过redistogo,但也许你可以试试?
$ r-> connect('herring.redistogo.com',9998);
$ R-> AUTH( '名为myUsername:foopassword');