Python도 GC를 지원한다.

큰 데이터를 여러번 반복해서 읽다 메모리 에러나는 경우 gc를 고려해 본다. 

사용하지 않는 변수는 명시적으로 표시해 줘야 되는 것 같다.

 

 

 

https://docs.python.org/3/library/gc.html

 

gc — Garbage Collector interface — Python 3.7.3 documentation

gc — Garbage Collector interface This module provides an interface to the optional garbage collector. It provides the ability to disable the collector, tune the collection frequency, and set debugging options. It also provides access to unreachable objects

docs.python.org

 

Posted by poterius
,