震动犀牛

文章
3
资源
0
加入时间
2年10月24天

Python内置函数复习

filter sorted heapq counter namedtuplereducedeque pickle islicere.splitendswith stat os#filter>>>aa = [1,2,3,45,6,7]>>>list(filter(lambda x:x>3,aa))>...

nodejs“并行”处理尝试

之前做过一些爬取方面的工作,由于node不能多线程,为了提高抓取效率,都是使用child_process.fork来多进程跑任务,然后通过message事件与主进程进行通信,代码编写的时候都是用的yield/await之类的同步写法,于是这次尝试利用node非阻塞I/O的机制,利用多个函数同时运行来模拟多线程,效果如何呢?尝试“并行”发送HTTP请求server.js用来统计qps,将产出的...