码迷,mamicode.com
首页 > 编程语言 > 详细

python-greenlet模块(协程)

时间:2018-07-09 11:10:28      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:cells   keyword   lin   print   body   space   fun   高并发   cin   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from greenlet import greenlet
 
def test1():
    print(12)
    gr2.switch()
    print(34)
    gr2.switch()
def test2():
    print(56)
    gr1.switch()
    print(78)
 
 
gr1 = greenlet(test1)#启动一个协程
gr2 = greenlet(test2)#启动一个协程
gr1.switch()#switch是协程切换

 高并发,单线程的实现上万并发不是问题

python-greenlet模块(协程)

标签:cells   keyword   lin   print   body   space   fun   高并发   cin   

原文地址:https://www.cnblogs.com/394510636-ff/p/9282139.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!