python线程:

import threading
import time
def show(arg):
time.sleep()
print('thread' + str(arg))
for i in range():
t = threading.Thread(target=show, args=(i,))
t.start()
print('main thread stop')
import threading
class MyThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self) def run(self):
print("线程开始运行") t1 = MyThread()
t1.start()

通过类创建线程

更多方法:

    • start            线程准备就绪,等待CPU调度
    • setName      为线程设置名称
    • getName      获取线程名称
    • setDaemon   设置为后台线程或前台线程(默认) t.setDaemon(True) 必须在 t.start()  之前调用
                         如果是后台线程,主线程执行过程中,后台线程也在进行,主线程执行完毕后,后台线程不论成功与否,均停止
                          如果是前台线程,主线程执行过程中,前台线程也在进行,主线程执行完毕后,等待前台线程也执行完成后,程序停止
    • join              逐个执行每个线程,执行完毕后继续往下执行,该方法使得多线程变得无意义
    • run              线程被cpu调度后自动执行线程对象的run方法

线程池

from concurrent.futures import ThreadPoolExecutor
from concurrent.futures import ProcessPoolExecutor
import time
def foo(i):
time.sleep(1)
print(i)
pool = ThreadPoolExecutor(2) #线程池
pool2 = ProcessPoolExecutor(2) #进程池 if __name__ == '__main__':
for i in range(10):
pool.submit(foo, i)
     #pool.submit(get_page,detail_url).add_done_callback(call_back_function)  #设置回调函数  

线程锁

import threading
import time
gl_num = 0
lock = threading.RLock()
def Func():
lock.acquire()
global gl_num
try:
gl_num += 1
print(gl_num)
finally: #防止死锁
lock.release()
for i in range(10):
t = threading.Thread(target=Func)
t.start()

信号量(Semaphore)

互斥锁 同时只允许一个线程更改数据,而Semaphore是同时允许一定数量的线程更改数据 ,比如厕所有3个坑,那最多只允许3个人上厕所,后面的人只能等里面有人出来了才能再进去。

import threading, time

semaphore = threading.BoundedSemaphore(2)  # 最多允许2个线程同时运行
def run(n):
semaphore.acquire()
time.sleep(1)
print("run the thread: %s" % n)
semaphore.release()
if __name__ == '__main__':
num = 0
for i in range(20):
t = threading.Thread(target=run, args=(i,))
t.start()

事件(event)

python线程的事件用于主线程控制其他线程的执行,事件主要提供了三个方法 set、wait、clear。

事件处理的机制:全局定义了一个“Flag”,如果“Flag”值为 False,那么当程序执行 event.wait 方法时就会阻塞,如果“Flag”值为True,那么event.wait 方法时便不再阻塞。

  • clear:将“Flag”设置为False
  • set:将“Flag”设置为True
import threading
def do(event_obj):
print( 'start')
event_obj.wait()
print('execute')

event_obj = threading.Event() #创建event对象
for i in range(10):
t = threading.Thread(target=do, args=(event_obj,))
t.start()
event_obj.clear() #默认Flag为False
inp = input('input:')
if inp == 'true':
event_obj.set()

条件(Condition)

使得线程等待,只有满足某条件时,才释放n个线程

acquire([timeout])/release(): 调用关联的锁的相应方法。 
wait([timeout]): 调用这个方法将使线程进入Condition的等待池等待通知,并释放锁。使用前线程必须已获得锁定,否则将抛出异常。 
notify(): 调用这个方法将从等待池挑选一个线程并通知,收到通知的线程将自动调用acquire()尝试获得锁定(进入锁定池);其他线程仍然在等待池中。调用这个方法不会释放锁定。使用前线程必须已获得锁定,否则将抛出异常。 
notifyAll(): 调用这个方法将通知等待池中所有的线程,这些线程都将进入锁定池尝试获得锁定。调用这个方法不会释放锁定。使用前线程必须已获得锁定,否则将抛出异常。

import threading
def run(n):
con.acquire() #用来加锁
con.wait() #用来接收通知
print("run the thread: %s" % n)
con.release()
if __name__ == '__main__':
con = threading.Condition()
for i in range(10):
t = threading.Thread(target=run, args=(i,))
t.setDaemon(True)
t.start()
while True:
inp = input('>>>') #输入数字
if inp == 'q':
break
con.acquire()
con.notify(int(inp)) #执行inp个线程(此时有10个线程开启了,notify会挑选inp个线程进行通知)
# con.notify() #默认通知一个
con.release()
#优点类似yield
import threading
import time
import datetime
num = 0
con = threading.Condition()
class Gov(threading.Thread):
def __init__(self):
super(Gov, self).__init__()
def run(self):
global num
con.acquire()
while True:
print("开始拉升股市")
num += 1
print("拉升了" + str(num) + "个点")
time.sleep(2)
if num == 5:
print("暂时安全!")
con.notify()
con.wait()
con.release()
class Consumers(threading.Thread):
def __init__(self):
super(Consumers, self).__init__()
def run(self):
global num
con.acquire()
while True:
if num > 0:
print("开始打压股市")
num -= 1
print("打压了" + str(num) + "个点")
time.sleep(2)
if num == 0:
print("你妹的!天台在哪里!")
con.notify()
con.wait()
con.release()
if __name__ == '__main__':
p = Gov()
c = Consumers()
p.start()
c.start()

额外例子

import threading
def condition_func():
ret = False
inp = input('>>>')
if inp == '':
ret = True
return ret
def run(n):
con.acquire()
con.wait_for(condition_func)
print("run the thread: %s" %n)
con.release()
if __name__ == '__main__':
con = threading.Condition()
for i in range(10):
t = threading.Thread(target=run, args=(i,))
t.start()

额外例子

Timer

定时器,指定n秒后执行某操作

from threading import Timer
def hello():
print("hello, world")
t = Timer(1, hello)
t.start()

python进程:

from multiprocessing import Process
def foo(i):
print('say hi', i) if __name__ == '__main__':
for i in range(10):
p = Process(target=foo, args=(i,))
p.start()

进程数据共享

进程各自持有一份数据,默认无法共享数据

from multiprocessing import Process
li = []
def foo(i):
li.append(i) #每个进程都有一份li,并将自己的[i]append进去
print('say hi', li,i)
if __name__ == '__main__':
for i in range(10):
p = Process(target=foo, args=(i,))
p.start()
import time
time.sleep(2)
print('ending', li) #主进程的li为空

实现数据共享

方法一:利用Array
from multiprocessing import Process, Array
temp = Array('i', [11, 22, 33, 44]) def Foo(temp,i):
temp[i] = 100 + i #需要将temp传递给每一个进程实现数据共享(利用Array)
print(temp[:])
if __name__ == '__main__':
for i in range(2): p = Process(target=Foo, args=(temp,i,))
p.start()
p.join()
print(temp[:])
方法二,利用Manage
from multiprocessing import Process, Manager
import multiprocessing
lock = multiprocessing.Lock()
def Foo(dic,i):
dic[i] = "b"
if __name__ == '__main__':
manage = Manager()
dic = manage.dict()
for i in range(2):
p = Process(target=Foo, args=(dic,i,))
p.start()
p.join() #猜测目的是让主进程不能断,可能会对dic造成影响。
print(dic)
from multiprocessing import Process, Queue
def f(i,q):
q.put(i)
if __name__ == '__main__':
q = Queue()
for i in range(10):
p = Process(target=f, args=(i,q,))
p.start()
while True:
print(q.get())

使用Queue

进程锁

from multiprocessing import Process, Array, RLock
def Foo(lock,temp,i):
lock.acquire()
temp[i] = 100+i
print(temp[:],i)
lock.release()
lock = RLock()
temp = Array('i', [11, 22, 33, 44])
if __name__ == '__main__':
for i in range(4):
p = Process(target=Foo, args=(lock, temp, i,))
p.start()

进程池

from multiprocessing import Process, Pool
import time
def Foo(i):
time.sleep(1)
return i + 100
def Bar(arg):
print(arg) if __name__ == '__main__':
pool = Pool(5)
# print(pool.apply(Foo, (1,))) #apply是阻塞的,所以进入子进程执行后,等待当前子进程执行完毕,在继续执行下一个进程
# print(pool.apply_async(func=Foo, args=(1,)).get()) #apply_async 是异步非阻塞的。有系统调用进程切换
for i in range(10):
pool.apply_async(func=Foo, args=(i,), callback=Bar)
pool.close()
pool.join() # 进程池中进程执行完毕后再关闭,如果注释,那么程序直接关闭。
print('end')

python协程:

线程和进程的操作是由程序触发系统接口,最后的执行者是系统;协程的操作则是程序员

协程的适用场景:当程序中存在大量不需要CPU的操作时(IO),适用于协程;

利用greenlet:

from greenlet import greenlet
def test1():
print(1)
gr2.switch()
print(2)
gr2.switch()
def test2():
print(3)
gr1.switch()
print(4)
gr1 = greenlet(test1)
gr2 = greenlet(test2)
gr1.switch()

利用gevent:

import gevent
def foo():
print('start foo')
gevent.sleep(0) #目的造成io堵塞,让线程切换到bar函数上
print('end foo')
def bar():
print('start bar')
gevent.sleep(0)
print('end bar')
gevent.joinall([
gevent.spawn(foo),
gevent.spawn(bar),
])
from gevent import monkey
monkey.patch_all() #必须加
import gevent
import requests
def f(url):
print('GET: %s' % url)
response = requests.request(url=url,method="GET")
data = response.text
print('%d bytes received from %s.' % (len(data), url))
gevent.joinall([
gevent.spawn(f, 'https://www.python.org/'),
gevent.spawn(f, 'https://www.yahoo.com/'),
gevent.spawn(f, 'https://github.com/'),
])

gevent实用场景

补充猴子补丁:

  使用猴子补丁的方式,gevent能够修改标准库里面大部分的阻塞式系统调用,包括socket、ssl、threading和 select等模块,而变为协作式运行。也就是通过猴子补丁的monkey.patch_xxx()来将python标准库中模块或函数改成gevent中的响应的具有协程的协作式对象。这样在不改变原有代码的情况下,将应用的阻塞式方法,变成协程式的。

  猴子补丁的功能很强大,但是也带来了很多的风险,尤其是像gevent这种直接进行API替换的补丁,整个Python进程所使用的模块都会被替换,可能自己的代码能hold住

import socket
import select
from gevent import monkey
print(socket.socket)
monkey.patch_socket()
print(socket.socket,'after socket') print(select.select,)
monkey.patch_select()
print(select.select,"after select")

python----线程进程协程的更多相关文章

  1. python 线程 进程 协程 学习

    转载自大神博客:http://www.cnblogs.com/aylin/p/5601969.html 仅供学习使用···· python 线程与进程简介 进程与线程的历史 我们都知道计算机是由硬件和 ...

  2. 学到了林海峰,武沛齐讲的Day34 完 线程 进程 协程 很重要

    线程 进程 协程 很重要 ...儿子满月回家办酒,学的有点慢,坚持

  3. Python学习笔记整理总结【网络编程】【线程/进程/协程/IO多路模型/select/poll/epoll/selector】

    一.socket(单链接) 1.socket:应用层与TCP/IP协议族通信的中间软件抽象层,它是一组接口.在设计模式中,Socket其实就是一个门面模式,它把复杂的TCP/IP协议族隐藏在Socke ...

  4. 文成小盆友python-num11-(1) 线程 进程 协程

    本节主要内容 线程补充 进程 协程 一.线程补充 1.两种使用方法 这里主要涉及两种使用方法,一种为直接使用,一种为定义自己的类然后继承使用如下: 直接使用如下: import threading d ...

  5. python线程、协程、I/O多路复用

    目录: 并发多线程 协程 I/O多路复用(未完成,待续) 一.并发多线程 1.线程简述: 一条流水线的执行过程是一个线程,一条流水线必须属于一个车间,一个车间的运行过程就是一个进程(一个进程内至少一个 ...

  6. 15.python并发编程(线程--进程--协程)

    一.进程:1.定义:进程最小的资源单位,本质就是一个程序在一个数据集上的一次动态执行(运行)的过程2.组成:进程一般由程序,数据集,进程控制三部分组成:(1)程序:用来描述进程要完成哪些功能以及如何完 ...

  7. python之并发编程(线程\进程\协程)

    一.进程和线程 1.进程 假如有两个程序A和B,程序A在执行到一半的过程中,需要读取大量的数据输入(I/O操作),而此时CPU只能静静地等待任务A读取完数据才能继续执行,这样就白白浪费了CPU资源.是 ...

  8. python中线程 进程 协程

    多线程:#线程的并发是利用cpu上下文的切换(是并发,不是并行)#多线程执行的顺序是无序的#多线程共享全局变量#线程是继承在进程里的,没有进程就没有线程#GIL全局解释器锁#只要在进行耗时的IO操作的 ...

  9. python_21_线程+进程+协程

    python_线程_进程_协程 什么是线程? -- os能够进行运算调度的最小单位,被包含在进程之中,是一串指令的集合 -- 每个线程都是独立的,可以访问同一进程下所有的资源 什么是进程? -- 每个 ...

  10. 线程&进程&协程

    线程 线程是应用程序中工作的最小单元,它被包含在进程之中,是进程中的实际运作单位.一条线程指的是进程中一个单一顺序的控制流,一个进程中可以并发多个线程,每条线程并行执行不同的任务.Threading用 ...

随机推荐

  1. Java 搜索引擎

    1.Java 全文搜索引擎框架 Lucene 毫无疑问,Lucene是目前最受欢迎的Java全文搜索框架,准确地说,它是一个全文检索引擎的架构,提供了完整的查询引擎和索引引擎,部分文本分析引擎.Luc ...

  2. 我的 $OI$, 退役前写点东西

    离 \(NOIp2018\) 还有五天, 总想写点什么 马上退役了啊 是什么时候喜欢上信息技术的呢 记不清了, 很小的时候就喜欢捣鼓关于电脑的东西 当时也不知道有算法这种东西 只是知道有黑客 巨 j8 ...

  3. 函数和常用模块【day05】:迭代器(六)

    本节内容 1.简书 2.可迭代对象 3.迭代器 4.rang方法 5.总结 一.简述 我们经常使用for循环去遍历一些序列数据,但是我们有的时间发现for循环的效率很低,而且很占用了大量的硬件资源,但 ...

  4. U盘从Fat32快速转换为NTFS

    WIN+R ,输入cmd,打开命令框 输入: convert d:/FS:NTFS 注意,你的U盘的盘符是什么就写什么,我的是d盘 例外的来了!!!一般来说,按照我上面的步骤已经没有问题了.但是!!! ...

  5. JS中的offsetWidth、offsetHeight、clientWidth、clientHeight等等的详细介绍

    javascript中offsetWidth.clientWidth.width.scrollWidth.clientX.screenX.offsetX.pageX 原文:https://www.cn ...

  6. Study 7 —— while循环中止语句

    循环的终止语句break #用于完全结束一个循环,跳出循环体执行循环后面的语句continue #只终止本次循环,接着执行后面的循环 1. 打印0-100,截止到第6次 count = 0 while ...

  7. Codeforces 526D Om Nom and Necklace (KMP)

    http://codeforces.com/problemset/problem/526/D 题意 给定一个串 T,对它的每一个前缀能否写成 A+B+A+B+...+B+A+B+A+B+...+B+A ...

  8. Linux下SVN使用

    转载:参考文章http://www.linuxidc.com/Linux/2011-09/42347.htm 1. 将文件checkout到本地目录     svn checkout path(pat ...

  9. WorkerMan 入门学习之(三)基础教程-Timer类的使用

    1.ServerTimer.php 代码: <?php /** * 定时器学习 */ require_once __DIR__ . '/Workerman/Autoloader.php'; us ...

  10. PHP第三方登录—OAuth2.0协议

    第2章 OAuth授权流程详解