摘要: https://www.python.org/dev/peps/pep-0442/ PEP 442 -- Safe object finalization Contents Abstract Definitions Impact Benefits Description Reference-coun 阅读全文
posted @ 2019-06-11 21:45 papering 阅读(235) 评论(0) 推荐(0) 编辑
摘要: initinit1 Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 22:22:05) [MSC v.1916 64 bit (AMD64)] on win32 Python 2.7.5 (default, May 15 2013, 22:44:16) [ 阅读全文
posted @ 2019-06-11 20:36 papering 阅读(594) 评论(0) 推荐(0) 编辑
摘要: 05012batchHandler22batchHandler32 050150250350 Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)] on win32 阅读全文
posted @ 2019-06-11 20:36 papering 阅读(583) 评论(0) 推荐(0) 编辑
摘要: gc.freeze() 冻结由垃圾回收器追踪的所有对象;将它们移至永久世代并在所有未来的回收操作中忽略它们。 如果一个进程将执行 fork() 而不执行 exec(),则在子进程中避免不必要的写入时拷贝将最大化内存共享并减少总体内存使用。 这需要同时在父进程的内存页中避免创建已释放的“空洞”并确保在 阅读全文
posted @ 2019-06-11 20:33 papering 阅读(234) 评论(0) 推荐(0) 编辑
摘要: tornado异步请求响应速度的实例测试 阅读全文
posted @ 2019-06-11 12:51 papering 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 阿里提供的12种常用后端开发工具 - 51CTO.COMhttp://developer.51cto.com/art/201906/597685.htm 12 Backend Development Tools by Alibaba - DZone Web Devhttps://dzone.com/ 阅读全文
posted @ 2019-06-11 12:50 papering 阅读(621) 评论(0) 推荐(0) 编辑
摘要: 临界区 在同步的程序设计中,临界区段(Critical section)指的是一个访问共享资源(例如:共享设备或是共享存储器)的程序片段,而这些共享资源有无法同时被多个线程访问的特性。 当有线程进入临界区段时,其他线程或是行程必须等待(例如:bounded waiting 等待法),有一些同步的机制 阅读全文
posted @ 2019-06-11 08:58 papering 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 竞态条件 race condition Race condition - Wikipedia https://en.wikipedia.org/wiki/Race_condition A race condition or race hazard is the condition of an ele 阅读全文
posted @ 2019-06-11 08:57 papering 阅读(405) 评论(0) 推荐(0) 编辑