Python 进程 进程池 非阻塞

该博客讲述了在多进程环境下,如何使用Python的`multiprocessing`模块实现消息队列,并通过`try-except`处理队列满和空的情况。输入进程尝试将PID和时间戳放入队列,而输出进程尝试不等待地从队列中取出数据,进行抽奖操作。队列大小为2,模拟了奖品库存,当库存不足时,输出提示。
摘要由CSDN通过智能技术生成
"""多进程使用消息队列 将任务放入/取出队列时不等待,但队列已满/为空时,会报错,所以要使用try: finnaly"""
import multiprocessing
from multiprocessing import Process, Queue
import time
import os


def inputQ(queue):
    """加入队列"""
    # queue.put(str(os.getpid()) + " -- " + str(time.time()))  # 当队列已满时,会阻塞,等待
    try:
        queue.put_nowait(str(os.getpid()) + " -- " + str(time.time()))
        print("用户 %d 进来要抽奖了 ,添加到队列" % os.getpid())
    except Exception as e:
        print("队列已满, %d" % os.getpid(), e)


def outputQ(queue):
    """从队列内取出数据"""
    try:
        data = queue.get_nowait()  # 当队列内无数据时,不会阻塞,会报错
    except Exception as e:
        print("队列已空", e)
    with open("data.txt", "r") as f:
        num = int(f.read())
    if num > 0:
        num_end = num
        num_end -= 1
        with open("data.txt", "w") as f:
            f.write(str(num_end))
        print(str(os.getpid()) + "用户 '%s' 已抽奖,抽奖前库存:%d,抽奖后库存:%d" %(data, num, num_end))
    else:
        print(str(os.getpid()) + "无库存了")


def run_test(q):
    """模拟有10个线程往队列内插入数据,有100个线程从队列内取数据"""
    for i in range(10):
        p = Process(target=inputQ, args=(q,))
        p.start()
        record_in.append(p)
    for i in range(100):  # 抽奖用户数比奖品数量多, 这种情况如果使用get_nowait()不会阻塞
        p = Process(target=outputQ, args=(q,))
        p.start()
        record_out.append(p)


if __name__ == '__main__':
    multiprocessing.freeze_support()
    record_in = []
    record_out = []
    q = Queue(2)  # 设置队列长度
    run_test(q)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值
>