[plt-scheme] Collect-Garbage not enabled on Dr. Scheme?
On Sun, 5 Apr 2009 01:43:33 +0300
emre berat nebioğlu <beratn at gmail.com> wrote:
> Someone said to me Drscheme has 3 or 4 garbage collector.Is it true ?
> If it is true.How it works and how drscheme uses tese.
MzScheme (the actual Scheme implementation that runs in the background
of DrScheme) supports two different Garbage Collectors: the older CGC
collector and the newer 3m collector. But the collector-selection
happens on compile time - that is when MzScheme runs, there can only be
one collector active, which is usually 3m since it is the default.
regards,
Marek