zoukankan      html  css  js  c++  java
  • 【10.6】线程同步--Semaphore 使用以及源码分析

     1 #!/user/bin/env python
     2 # -*- coding:utf-8 -*-
     3 
     4 # Semaphore 是用于控制进入数量的锁
     5 # 文件、读、写、写一般只是用于一个线程写,读可以允许有多个
     6 
     7 # 做爬虫
     8 import threading
     9 import time
    10 
    11 
    12 class HtmlSpider(threading.Thread):
    13     def __init__(self, url, sem):
    14         super().__init__()
    15         self.url = url
    16         self.sem = sem
    17 
    18     def run(self):
    19         time.sleep(2)
    20         print('got html text success')
    21         self.sem.release()
    22 
    23 
    24 class UrlProducer(threading.Thread):
    25     def __init__(self, sem):
    26         super().__init__()
    27         self.sem = sem
    28 
    29     def run(self):
    30         for i in range(20):
    31             # 每次调用Semaphore的acquire方法,sem = threading.Semaphore(3)设置的次数都会减一
    32             self.sem.acquire()
    33             html_thread = HtmlSpider('http://www.baidu.com/{}'.format(i), self.sem)
    34             html_thread.start()
    35 
    36 
    37 if __name__ == '__main__':
    38     # 一次允许3个并发
    39     sem = threading.Semaphore(3)
    40     url_producer = UrlProducer(sem)
    41     url_producer.start()
    got html text success
    got html text success
    got html text success
    got html text successgot html text success
    
    got html text success
    got html text success
    got html text success
    got html text success
    got html text success
    got html text success
    got html text success
    got html text success
    got html text success
    got html text success
    got html text success
    got html text success
    got html text success
    got html text success
    got html text success
    

     每2秒弹出一组3个的 ‘got html text success’

    Semaphore底层是用Condition实现的

  • 相关阅读:
    20000+关注,开源两本硬核的原创电子书!
    Tail Latency学习
    Zabbix5.0 监控redis
    JAVA多线程(九) ForkJoin框架
    JAVA多线程(八) Condition源码分析
    程序员英语学习(二) 标点符号对应的英语单词汇总
    linux shell快速入门
    Ubuntu常用指令和快捷键汇总
    Win10常用快捷键汇总
    算法路漫漫(三) 荷兰国旗
  • 原文地址:https://www.cnblogs.com/zydeboke/p/11298706.html
Copyright © 2011-2022 走看看