PyPy
PyPy Configuration[translation.gc]
modified Oct 19, 2007 by Armin Rigo

translation.gc

back to parent

Basic Option Information

Description

Choose the Garbage Collector used by the translated program:

  • "ref": reference counting. Takes very long to translate and the result is slow.
  • "marksweep": naive mark & sweep.
  • "semispace": a copying semi-space GC.
  • "generation": a generational GC using the semi-space GC for the older generation.
  • "boehm": use the Boehm conservative GC.