Tag
Memory Management
这里聚合所有与 Memory Management 相关的文章与指南。
Python 2026/4/1
原创解读:Python 内存架构的三层世界
删除大列表后内存为何不降?理解 Python Arena-Pool-Block 三层内存架构的工程权衡与设计逻辑
Original Interpretation Python Memory Management Cpython Performance
Python 2026/4/2
原创解读:Python 垃圾回收,最常见的三个认知误区
拆解引用计数、gc.collect()、del 语句三大误区,建立 Python GC 机制(引用计数+分代GC+循环检测)的完整认知框架
Original Interpretation Python Garbage Collection Memory Management Performance