我遇到了与此类似的问题:

Connecting to Redis To Go with PHP

基本上,我在redis中有这个uri:

redis:// myusername:[email protected]:9998

我正在尝试使用phpredis连接到它:

$ r-> connect(“redis:// myusername:[email protected]:9998 /”);

而且它不起作用。在其他答案中,建议使用predis,但我只是不想这么做。我应该有空使用我想要的任何客户端。

有任何想法吗?

提前致谢

最佳答案

使用此代替:

$r = new Redis();
$r->connect("herring.redistogo.com", 9998);
$r->auth("foopassword");

如果这样不起作用,请尝试使用$r->auth("myusername:foopassword")

您可以在the official GitHub page上找到phpredis文档。

关于php - phpredis与Redis一起去,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13037061/

10-09 22:21