python生产者消费者模型

Posted Apollo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python生产者消费者模型相关的知识,希望对你有一定的参考价值。

import time
import queue
import threading

q = queue.Queue()  # 线程安全


def producer(id):
    """生产者"""
    while True:
        time.sleep(2)
        q.put('包子')
        print('厨师%s 生产了一个包子' % id)


for i in range(1, 4):
    t = threading.Thread(target=producer, args=(i,))
    t.start()


def consumer(id):
    """消费者"""
    while True:
        time.sleep(1)
        v1 = q.get()
        print('顾客 %s 吃了一个包子' % id)


for i in range(1, 3):
    t = threading.Thread(target=consumer, args=(i,))
    t.start()

以上是关于python生产者消费者模型的主要内容,如果未能解决你的问题,请参考以下文章

Python-生成器实现简单的"生产者消费者"模型

python并发编程之多线程守护系列互斥锁生产者消费者模型

Python 生产者消费者模型

python 生产者消费者线程模型

python队列生产者消费者模型

python 生产者与消费者模型