aboutsummaryrefslogtreecommitdiff
path: root/src/zen/zen.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2024-09-18 10:30:29 +0200
committerGitHub Enterprise <[email protected]>2024-09-18 10:30:29 +0200
commitf8191d5fba3bfbc93b33cf47a3b16853219c105a (patch)
treee1bd4ef561ca76f3d42faa03aff60f05aec71881 /src/zen/zen.cpp
parentMerge pull request #161 from ue-foundation/mr/sym-not-loading (diff)
downloadarchived-zen-f8191d5fba3bfbc93b33cf47a3b16853219c105a.tar.xz
archived-zen-f8191d5fba3bfbc93b33cf47a3b16853219c105a.zip
cache generate command to create large data sets for testing (#159)
* add CacheGenerateCommand
Diffstat (limited to 'src/zen/zen.cpp')
-rw-r--r--src/zen/zen.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/zen/zen.cpp b/src/zen/zen.cpp
index 0f21de130..79338f6f3 100644
--- a/src/zen/zen.cpp
+++ b/src/zen/zen.cpp
@@ -290,6 +290,7 @@ main(int argc, char** argv)
AttachCommand AttachCmd;
BenchCommand BenchCmd;
CacheDetailsCommand CacheDetailsCmd;
+ CacheGenerateCommand CacheGenerateCmd;
CacheInfoCommand CacheInfoCmd;
CacheStatsCommand CacheStatsCmd;
CopyCommand CopyCmd;
@@ -343,6 +344,7 @@ main(int argc, char** argv)
{"bench", &BenchCmd, "Utility command for benchmarking"},
{"cache-details", &CacheDetailsCmd, "Details on cache"},
{"cache-info", &CacheInfoCmd, "Info on cache, namespace or bucket"},
+ {CacheGenerateCommand::Name, &CacheGenerateCmd, CacheGenerateCommand::Description},
{"cache-stats", &CacheStatsCmd, "Stats on cache"},
{"copy", &CopyCmd, "Copy file(s)"},
{"copy-state", &CopyStateCmd, "Copy zen server disk state"},