1
bigtan 2016-08-17 16:58:10 +08:00 1
multiprocessing pool
|
2
shyling 2016-08-17 17:38:18 +08:00 1
不是有 concurrent.futures 么?
|
3
janxin 2016-08-17 19:47:40 +08:00 via iPhone
node 的 async 不是还是单线程的么?
|
4
Trim21 OP @janxin 其实我的意思是,彻底参数列表和函数就可以并行的。
其实现在也是在写爬虫,要并行也是因为等 IO |
5
eloah 2016-08-17 22:01:55 +08:00
node 本身不就是单线程的吗......
话说,python 下也有 async 这个库...... multiprocessing 就好啦 |
6
latyas 2016-08-18 08:23:13 +08:00 via iPhone
@Trim21 multiprocessing
爬虫可用 tornado 或者 asyncio 这是异步 io 的库 速度可以很快 |
7
Zuckonit 2016-08-18 11:14:05 +08:00
多线程: from multiprocessing.dummy import Pool as ThreadPool
有个第三方库: threadpool 可以考虑下协程: gevent |