diff options
| author | Dan Engelbrecht <[email protected]> | 2024-09-18 10:30:29 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-09-18 10:30:29 +0200 |
| commit | f8191d5fba3bfbc93b33cf47a3b16853219c105a (patch) | |
| tree | e1bd4ef561ca76f3d42faa03aff60f05aec71881 /src/zen/zen.cpp | |
| parent | Merge pull request #161 from ue-foundation/mr/sym-not-loading (diff) | |
| download | archived-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.cpp | 2 |
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"}, |