redis学习

python redis 关于pipline(),lua脚本和s

2017-09-12  本文已影响416人  MJ爱运动

使用pipelining 发送命令时,redis server必须部分请求放到队列中(使用内存)执行完毕后一次性发送结果
pipeline期间将“独占”链接,此期间将不能进行非“管道”类型的其他操作,直到pipeline关闭;如果你的pipeline的指令集很庞大,为了不干扰链接中的其他操作,你可以为pipeline操作新建Client链接,让pipeline和其他正常操作分离在2个client中

pipeline和 execute合起来相当于使用事务来操作,可以一次性执行多个命令

#!/usr/bin/python2
import redis
import time
def without_pipeline():
    r=redis.Redis()
    for i in range(10000):
        r.ping()
    return
def with_pipeline():
    r=redis.Redis()
    pipeline=r.pipeline()
    for i in range(10000):
        pipeline.ping()
    pipeline.execute()
    return
def bench(desc):
    start=time.clock()
    desc()
    stop=time.clock()
    diff=stop-start
    print "%s has token %s" % (desc.func_name,str(diff))
if __name__=='__main__':
    bench(without_pipeline)
    bench(with_pipeline)

# 测试结果
without_pipeline has token 4.64443057954
with_pipeline has token 0.098383873589

python 调用lua脚本操作redis

GET_ALL_RID_SCRIPT = """
local cursor = "0"
local matchKey = ARGV[1]
local matchKeyPrefix = string.sub(matchKey,1,-2)
local ridList = {};
local done = false;
repeat
    local result = redis.call("SCAN", cursor, "match", matchKey)
    cursor = result[1];
    for i, key in ipairs(result[2]) do
        local rid = string.gsub(key,matchKeyPrefix,"");
        table.insert(ridList,rid);
    end
    if cursor == "0" then
        done = true;
    end
until done

return ridList;
"""

s = self.conn.register_script(GET_ALL_RID_SCRIPT)
res = s(args=[match])

参考链接

scan 命令

通过key '*' 查找所有key 无匹配模式遍历 有匹配模式遍历
上一篇 下一篇

猜你喜欢

热点阅读