在使用 gevent 时候真的很佩服它的强大,但是在使用中有一个问题一直比较头疼,如图:
不知道有没有什么更好的写法~
1
mgna17 2016-11-24 11:32:57 +08:00 1
比如。。。用列表生成式么
[gevent.spawn(item) for item in tmp] |
2
NaVient 2016-11-24 14:36:50 +08:00 1
楼主应该才开始写 python
```python gevet.joinall([gevent.spawn(tmp[i]) for i in range(5)]) ``` |
3
hastelloy 2016-11-24 18:18:07 +08:00 via Android 1
我不厚道的觉得楼主不但刚学 python ,而且是刚学编程,怎么的也可以是 for i.. : temp[i]吧
|
4
est 2016-11-24 18:22:03 +08:00 1
gevent.pool
|
6
GeekGao 2016-11-25 17:54:30 +08:00 1
http://sdiehl.github.io/gevent-tutorial/ 参考 Groups and Pools
|