Memory use, forcing GC, %oXX vars keeping references
Subject: Memory use, forcing GC, %oXX vars keeping references
From: Stavros Macrakis
Date: Sat, 20 Jan 2007 13:58:52 -0500
> Short of manually typing in kill(%o42) and soforth for each iteration,
> how can I ensure that these lists get GCed and hence keep my system
> running longer between crashes (maybe)?
The "labels" variable has a list of all the %i/%o variables. You can
write code to kill them individually, or simply kill(labels). You can
also set nolabels:true, which continues to *display* %i/%o labels, but
does not set them to results, so they can be garbage collected.
-s