Python3.X 线程中信号量的使用方法示例
作者:FIZLIN 时间:2022-06-12 12:07:13
前言
最近在学习python,发现了解线程信号量的基础知识,对深入理解python的线程会大有帮助。所以本文将给大家介绍Python3.X线程中信号量的使用方法,下面话不多说,来一起看看详细的介绍:
方法示例
线程中,信号量主要是用来维持有限的资源,使得在一定时间使用该资源的线程只有指定的数量
# -*- coding:utf-8 -*-
""" Created by FizLin on 2017/07/23/-下午10:59
mail: https://github.com/Fiz1994
信号量
maxconnections = 5
...
pool_sema = BoundedSemaphore(value=maxconnections)
Once spawned, worker threads call the semaphore's acquire and release methods when they need to connect to the server:
pool_sema.acquire()
conn = connectdb()
... use connection ...
conn.close()
pool_sema.release()
"""
import threading
import time
import random
sites = ["https://www.baidu.com/", "https://github.com/Fiz1994", "https://stackoverflow.com/",
"https://www.sogou.com/",
"http://english.sogou.com/?b_o_e=1&ie=utf8&fr=common_index_nav&query="] * 20
sites_index = 0
maxconnections = 2
pool_sema = threading.BoundedSemaphore(value=maxconnections)
def test():
with pool_sema:
global sites_index, sites
url = str(sites[sites_index])
k = random.randint(10, 20)
print("爬去: " + url + " 需要时间 : " + str(k))
sites_index += 1
# print(url)
time.sleep(k)
print('退出 ', url)
for i in range(100):
threading.Thread(target=test).start()
可以发现该程序中,永远只有2个爬虫是处于活动状态
来源:https://segmentfault.com/a/1190000010314270
标签:python,线程,信号量
0
投稿
猜你喜欢
Python的类成员变量默认初始值的坑及解决
2023-12-02 18:46:47
Python3标准库之dbm UNIX键-值数据库问题
2024-01-26 15:56:11
解决usageerror: line magic function "%%time" not found问题
2022-06-16 15:53:29
如何把数据从SQL Server导出到Access或Excel中去?
2009-11-02 20:26:00
Python编程之列表操作实例详解【创建、使用、更新、删除】
2021-12-24 19:03:03
matplotlib 使用 plt.savefig() 输出图片去除旁边的空白区域
2023-06-24 02:55:42
python提取word文件中的所有图片
2022-04-10 13:56:39
使用Pycharm(Python工具)新建项目及创建Python文件的教程
2022-06-07 11:43:52
Oracle PL/SQL语言入门基础
2010-07-20 13:28:00
python 巡检脚本的项目实践
2023-10-06 11:54:15
[翻译]标记语言和样式手册 Chapter 10 应用CSS
2008-02-02 18:44:00
vux-scroller实现移动端上拉加载功能过程解析
2024-05-09 10:42:21
SQL Server中查询结果超出了查询时间范围解决方法
2024-01-18 04:05:54
Python基于argparse与ConfigParser库进行入参解析与ini parser
2022-09-16 01:56:39
关于python并发编程中的协程
2023-10-18 04:37:44
Python导入自定义路径的方法
2021-06-30 13:43:28
SQL对数据进行按月统计或对数据进行按星期统计的实例代码
2024-01-28 08:41:47
基于Python实现对比Exce的工具
2022-12-04 17:44:44
VS Code安装go插件失败原因分析以及解决方案
2024-04-26 17:24:08
MySQL延时复制库方法详解
2024-01-26 14:21:51