set the default threshold much higher

we don't need to run gc frequently
This commit is contained in:
Jeremy Hylton 2000-09-01 04:01:55 +00:00
parent b69a27e5b2
commit 045946d4ee
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ static int generation = 0; /* current generation being collected */
/* collection frequencies, XXX tune these */
static int enabled = 1; /* automatic collection enabled? */
static int threshold0 = 100; /* net new containers before collection */
static int threshold0 = 5000; /* net new containers before collection */
static int threshold1 = 10; /* generation0 collections before collecting 1 */
static int threshold2 = 10; /* generation1 collections before collecting 2 */