献给有缘人

该代码示例展示了如何利用Python的ThreadPoolExecutor进行并发处理,结合Redis存储来监控数据更新。当数据更新间隔小于10秒时,避免重复更新,否则执行更新操作并记录更新时间。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

代码

# -*- coding: utf-8 -*-
# @Author   : zbz

import time
from concurrent.futures import ThreadPoolExecutor, as_completed
from threading import Lock
from redis import Redis

rdb = Redis(decode_responses=True)
pool = ThreadPoolExecutor(max_workers=10)
lock = Lock()
now = lambda: int(time.time())


def work():
    lock.acquire()
    utime = rdb.get("utime")
    if utime and now() - int(utime) < 10:
        lock.release()
        return 200
    else:
        print("需要更新...")
        time.sleep(2)
        print("更新完成...")
        utime = now()
        rdb.set("utime", utime)
        print("更新时间 ==> {}".format(time.strftime('%Y-%m-%d %H:%M.%S', time.localtime(utime))))
        lock.release()
        return 200


def callback(f):
    print("回调函数 ==> {}".format(f.result()))


def run():
    fs = []

    for _ in range(10):
        f = pool.submit(work)
        fs.append(f)

    for f in as_completed(fs):
        print(f.result())


if __name__ == '__main__':
    run()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值