码迷,mamicode.com
首页 > 其他好文 > 详细

垃圾回收 永生代

时间:2019-06-11 20:49:26      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:pos   html   permanent   ocs   function   RoCE   obj   -o   class   

https://docs.python.org/3/library/gc.html#module-gc
gc.freeze()

Freeze all the objects tracked by gc - move them to a permanent generation and ignore all the future collections. This can be used before a POSIX fork() call to make the gc copy-on-write friendly or to speed up collection. Also collection before a POSIX fork() call may free pages for future allocation which can cause copy-on-write too so it’s advised to disable gc in master process and freeze before fork and enable gc in child process.

New in version 3.7.

gc.unfreeze()

Unfreeze the objects in the permanent generation, put them back into the oldest generation.

New in version 3.7.

gc.get_freeze_count()

Return the number of objects in the permanent generation.

垃圾回收 永生代

标签:pos   html   permanent   ocs   function   RoCE   obj   -o   class   

原文地址:https://www.cnblogs.com/yuanjiangw/p/11005842.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!