2017-01-17 98 views

回答

1

複製/複製任何Redis數據類型的最簡單方法是使用​​3210和​​命令組合。這在大多數情況下也是最快的。

爲了避免發送有效載荷來回,一個Lua腳本,絕對是最好的方式(https://gist.github.com/itamarhaber/d30b3c40a72a07f23c70):

-- @desc: The fastest, type-agnostic way to copy a Redis key 
-- @usage: redis-cli --eval copy_key.lua <source> <dest> , [NX] 

local s = KEYS[1] 
local d = KEYS[2] 

if redis.call("EXISTS", d) == 1 then 
    if type(ARGV[1]) == "string" and ARGV[1]:upper() == "NX" then 
    return nil 
    else 
    redis.call("DEL", d) 
    end 
end 

redis.call("RESTORE", d, 0, redis.call("DUMP", s)) 
return "OK"