2013-09-24 70 views

回答

0

我已經實現用PREDIS和我同樣的事情t會以您想要的方式返回。 你可能想嘗試的..

include 'Autoloader.php'; 

Autoloader::register(); 

$redis = new Predis\Client(array(
    "scheme" => "tcp", 
    "host" => localhost, 
    "port" => 6379, 
)); 

$scores = $redis->zrevrange('key','start','end',withscores); 
+0

我運行Redis的服務器上LUA素文字與phpredis擴展,而不僅僅是使用Redis的擴展得到zset數據。 – Devin