aboutsummaryrefslogtreecommitdiff
path: root/zenserver/config.h
diff options
context:
space:
mode:
authorPer Larsson <[email protected]>2021-12-10 07:35:28 +0100
committerPer Larsson <[email protected]>2021-12-10 07:35:28 +0100
commit680d0a3b3c8e76762a0e8b19a94fd854429b91a6 (patch)
tree483fa84d88086baeeec0bfb3782cfea7c3e1c3dd /zenserver/config.h
parentIgnore clangd cache directory. (diff)
downloadzen-680d0a3b3c8e76762a0e8b19a94fd854429b91a6.tar.xz
zen-680d0a3b3c8e76762a0e8b19a94fd854429b91a6.zip
Set GC default enabled and interval set to zero (off).
Diffstat (limited to 'zenserver/config.h')
-rw-r--r--zenserver/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zenserver/config.h b/zenserver/config.h
index 086f761fc..bc8768961 100644
--- a/zenserver/config.h
+++ b/zenserver/config.h
@@ -75,9 +75,9 @@ struct ZenGcConfig
{
ZenCasEvictionPolicy Cas;
ZenCacheEvictionPolicy Cache;
- int32_t IntervalSeconds = 60 * 60;
+ int32_t IntervalSeconds = 0;
bool CollectSmallObjects = false;
- bool Enabled = false;
+ bool Enabled = true;
};
struct ZenServerOptions