Python多进程同步Lock、Semaphore、Event实例

作者:junjie 时间:2021-02-22 17:11:26 

同步的方法基本与多线程相同。

1) Lock

当多个进程需要访问共享资源的时候,Lock可以用来避免访问的冲突。


import multiprocessing
import sys

def worker_with(lock, f):
    with lock:
        fs = open(f,"a+")
        fs.write('Lock acquired via with\n')
        fs.close()
       
def worker_no_with(lock, f):
    lock.acquire()
    try:
        fs = open(f,"a+")
        fs.write('Lock acquired directly\n')
        fs.close()
    finally:
        lock.release()

if __name__ == "__main__":

    f = "file.txt"
 
    lock = multiprocessing.Lock()
    w = multiprocessing.Process(target=worker_with, args=(lock, f))
    nw = multiprocessing.Process(target=worker_no_with, args=(lock, f))

    w.start()
    nw.start()

    w.join()
    nw.join()

在上面的例子中,如果两个进程没有使用lock来同步,则他们对同一个文件的写操作可能会出现混乱。

2)Semaphore

Semaphore用来控制对共享资源的访问数量,例如池的最大连接数。


import multiprocessing
import time

def worker(s,i):
    s.acquire()
    print(multiprocessing.current_process().name + " acquire")
    time.sleep(i)
    print(multiprocessing.current_process().name + " release")
    s.release()

if __name__ == "__main__":
 
    s = multiprocessing.Semaphore(2)
    for i in range(5):
        p = multiprocessing.Process(target=worker, args=(s,i*2))
        p.start()

上面的实例中使用semaphore限制了最多有2个进程同时执行。

3)Event

Event用来实现进程间同步通信。


import multiprocessing
import time

def wait_for_event(e):
    """Wait for the event to be set before doing anything"""
    print ('wait_for_event: starting')
    e.wait()
    print ('wait_for_event: e.is_set()->' + str(e.is_set()))

def wait_for_event_timeout(e, t):
    """Wait t seconds and then timeout"""
    print ('wait_for_event_timeout: starting')
    e.wait(t)
    print ('wait_for_event_timeout: e.is_set()->' + str(e.is_set()))


if __name__ == '__main__':
    e = multiprocessing.Event()
    w1 = multiprocessing.Process(name='block',
                                 target=wait_for_event,
                                 args=(e,))
    w1.start()

    w2 = multiprocessing.Process(name='non-block',
                                 target=wait_for_event_timeout,
                                 args=(e, 2))
    w2.start()

    time.sleep(3)
    e.set()
    print ('main: event is set')
   
#the output is:
#wait_for_event_timeout: starting
#wait_for_event: starting
#wait_for_event_timeout: e.is_set()->False
#main: event is set
#wait_for_event: e.is_set()->True

标签:Python,多进程同步,Lock,Semaphore,Event
0
投稿

猜你喜欢

  • 浅谈Python2、Python3相对路径、绝对路径导入方法

    2023-07-30 04:09:35
  • 如何在ASP中使用SQL存储过程

    2008-02-26 12:09:00
  • python如何利用paramiko执行服务器命令

    2022-09-29 03:39:34
  • ASP 高级模板引擎实现类

    2011-03-25 10:54:00
  • python内置模块collections知识点总结

    2023-10-27 19:37:08
  • Javascript实现的鼠标经过时播放声音

    2010-05-18 20:03:00
  • getdata table表格数据join mysql方法

    2024-01-25 17:55:08
  • python使用SMTP发送qq或sina邮件

    2021-03-08 01:06:55
  • XML入门的常见问题(二)

    2008-09-05 17:20:00
  • 详解Mysql case then使用

    2024-01-25 05:38:19
  • pytest解读fixtures之Teardown处理yield和addfinalizer方案

    2023-06-18 22:13:01
  • 详解Python3迁移接口变化采坑记

    2022-12-25 14:29:49
  • vue $mount 和 el的区别说明

    2024-04-28 09:20:24
  • Python算法之求n个节点不同二叉树个数

    2022-08-22 03:59:30
  • 解决python 找不到module的问题

    2022-08-05 07:33:25
  • Python语言实现二分法查找

    2021-12-01 18:39:49
  • 解决Windows 7下安装Oracle 11g相关问题的方法

    2024-01-22 05:19:19
  • 网页设计进阶之一 (步骤和大局观)

    2008-08-23 10:39:00
  • 一步步教你安装VSCode(附带图解步骤)

    2023-09-30 05:13:06
  • 微信小程序滑动选择器的实现代码

    2024-05-09 10:34:48
  • asp之家 网络编程 m.aspxhome.com