如何清除通过 rpy 创建的对象(及其占用的内存)?
import rpy2.robjects as r
a = r.r('a = matrix(NA, 2000000, 50)')
del a #if I do this, there is no change in the amount of memory used
r.r('rm(list=(ls(all=TRUE)))') # Same here, the objects disappear, but the memory is still used
不幸的是,在我的应用程序中,内存使用量会增加,直到没有足够的内存然后崩溃......来自 rpy2文档:
对象本身仍然可用,并且在从 Python 中删除 foo 之前不受 R 的垃圾收集的保护
但即使这样做:
import rpy2.robjects as r
a = r.r('a = matrix(NA, 2000000, 50)')
r.r.rm('a')
del a
r.r.gc()
不释放使用的内存...
编辑:rpy2 2.0,Win XP,R 2.12.0