diff options
| author | Dan Engelbrecht <[email protected]> | 2024-04-22 22:52:15 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-04-22 22:52:15 +0200 |
| commit | 9ce219549ee85f74f9dc03a097e5098023d91b9e (patch) | |
| tree | d8c75ce36e000e3779806ba85e7a77f04176913a | |
| parent | InsertChunks for CAS store (#55) (diff) | |
| download | zen-9ce219549ee85f74f9dc03a097e5098023d91b9e.tar.xz zen-9ce219549ee85f74f9dc03a097e5098023d91b9e.zip | |
set gc-v2 as default (#56)
- Change: GCv2 is now the default option, use `--gc-v2=false` to fall back to GCv1
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | src/zenserver/config.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 92849ab44..461ff68b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ ## +- Change: GCv2 is now the default option, use `--gc-v2=false` to fall back to GCv1 - Bugfix: Correctly calculate size freed/data moved from blocks in GCv2 - Feature: `zen up` command improvements - --`port` allows you to specify a base port when starting an instance diff --git a/src/zenserver/config.cpp b/src/zenserver/config.cpp index af718633f..e33b6caf3 100644 --- a/src/zenserver/config.cpp +++ b/src/zenserver/config.cpp @@ -893,7 +893,7 @@ ParseCliOptions(int argc, char* argv[], ZenServerOptions& ServerOptions) "", "gc-v2", "Use V2 of GC implementation or not.", - cxxopts::value<bool>(ServerOptions.GcConfig.UseGCV2)->default_value("false"), + cxxopts::value<bool>(ServerOptions.GcConfig.UseGCV2)->default_value("true"), ""); options.add_option("gc", |