1
我使用phpredis延伸,並且當我打電話:redis的LUA腳本調用redis.call( 「ZREVRANGE」,KEYS [1],開始,結束, 'WITHSCORES')
redis.call("ZREVRANGE", KEYS[1], start, endPos, 'WITHSCORES')
在LUA腳本,它返回
array(6) {
[0] =>
string(5) "10010"
[1] =>
string(2) "12"
[2] =>
string(5) "10012"
[3] =>
string(2) "-2"
[4] =>
string(5) "10011"
[5] =>
string(2) "-2"
}
其實我想返回關聯數組:
array(
"10010" => 12, "10012 => -2, ...
)
我運行Redis的服務器上LUA素文字與phpredis擴展,而不僅僅是使用Redis的擴展得到zset數據。 – Devin