计算密集型的部分适合使用进程,耗时的部分适合使用线程 1 from multiprocessing import Pool 2 3 # 创建一个进程池,里面放5个进程 4 pool = Pool(5) 5 6 # 阻塞模式 7 pool.apply(task, args=(t,)) 8 9 # 非阻 ...
分类:
编程语言 时间:
2020-05-30 12:33:18
阅读次数:
80
Eclipse创建Maven web工程
IDEA创建Maven web工程 ...
分类:
Web程序 时间:
2020-05-29 21:04:37
阅读次数:
101
Spark 通信架构 1、spark 一开始使用 akka 作为网络通信框架,spark 2.X 版本以后完全抛弃 akka,而使用 netty 作为新的网络通信框架。最主要原因:spark 对 akka 没有维护,需要 akka 更新,spark 的发展受到了 akka 的牵制,akka 版本之间 ...
分类:
其他好文 时间:
2020-05-29 19:20:02
阅读次数:
70
用“等待-通知”机制优化循环等待 前言 在破坏占用且等待条件的时候,如果转出账本和转入账本不满足同时在文件架上这个条件,就用死循环的方式来循环等待。 1 // 一次性申请转出账户和转入账户,直到成功 2 while(!actr.apply(this, target)) 3 ; 如果 apply() ...
分类:
编程语言 时间:
2020-05-28 23:45:18
阅读次数:
80
步骤:打开File—>Settings—>Editor—>Code Style—>File and Code Templates—>Files—>Python Script,填入模板,点击apply ...
分类:
其他好文 时间:
2020-05-28 23:35:20
阅读次数:
175
1.定义一系列的算法 2.将这些算法封装起来 3.可以让它们相互替换 const EmployeeA = function(){}EmployeeA.prototype.calculate = function(salary){ return salary * 4;}const EmployeeB ...
分类:
Web程序 时间:
2020-05-28 22:00:46
阅读次数:
96
1、自定义类实现RequestInterceptor接口类: @Component public class FeignInterceptor implements RequestInterceptor{ @Override public void apply(RequestTemplate tem ...
分类:
编程语言 时间:
2020-05-28 16:41:25
阅读次数:
108
C:\Users\Desktop\homeWork\Django_stu_man>python manage.py migrate Operations to perform: Apply all migrations: admin, app01, auth, contenttypes, sessi ...
分类:
移动开发 时间:
2020-05-27 18:45:16
阅读次数:
86
bind返回对应函数, 便于稍后调用; apply, call则是立即调用。 除此外, 在 ES6 的箭头函数下, call 和 apply 将失效, 对于箭头函数来说: 箭头函数体内的 this 对象, 就是定义时所在的对象, 而不是使用时所在的对象;所以不需要类似于var _this = thi ...
分类:
移动开发 时间:
2020-05-26 18:28:13
阅读次数:
102
vue中的$on,$emit,$once,$off源码实现 weixin_34413065 2018-09-01 13:40:00 644 收藏 1 展开 这几种模式是基于订阅观察者模式的,维护一个事件中心,on的时候将事件按名称存在事件中心里,称之为订阅者,然后emit将对应的事件进行发布,去执行 ...
分类:
其他好文 时间:
2020-05-26 15:10:10
阅读次数:
89