码迷,mamicode.com
首页 > 编程语言 > 详细

redis实战 -- python知识散记

时间:2018-07-03 18:19:05      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:tin   cores   port   row   ict   知识   delay   import   font   

-- time.time()

-- row.to_dict()

-- json.dumps(row.to_dict())

#!/usr/bin/env python

import time

def schedule_row_cache(conn,row_id, delay) : 
    conn.zadd(delay:, row_id, delay)
    conn.zadd(schedule:, row_id, time.time())


def cache_rows(conn) : 
    while not QUIT : 
        next = conn.zrange(schedule:, 0, 0, withscores=True)
        now = time.time()
        if not next or next[0][1] > now :
            time.sleep(.05)
            continue
        row_id = next[0][0]
        
        delay = conn.zscore(delay:, row_id)
        if delay <= 0 : 
            conn.zdel(delay:, row_id)
            conn.zdel(schedule:, row_id)
            conn.delete(inv: + row_id)
        row = Inventory.get(row_id)
        conn.zadd(schedule:, row_id, now + delay)
        conn.set(inv: + row_id, json.dumps(row.to_dict()))

-- time.time() 需要导入time库

-- import time

 

-- row.to_dict() 

啦啦啦

redis实战 -- python知识散记

标签:tin   cores   port   row   ict   知识   delay   import   font   

原文地址:https://www.cnblogs.com/ClassNotFoundException/p/9259643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!