1
0
Fork 0
mirror of https://github.com/dragonflydb/dragonfly.git synced 2024-12-14 11:58:02 +00:00

chore: add missing doc for spill_file_prefix (#2174)

* chore: add missing doc for spill_file_prefix

* chore: add wording for experimental
This commit is contained in:
Kostas Kyrimis 2023-11-21 11:56:59 +02:00 committed by GitHub
parent 604c600166
commit 03a6b508e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,11 @@ extern "C" {
using namespace std;
ABSL_FLAG(string, spill_file_prefix, "", "");
ABSL_FLAG(string, spill_file_prefix, "",
"Experimental flag. Enables tiered storage if set. "
"The string denotes the path and prefix of the files "
" associated with tiered storage. E.g,"
"spill_file_prefix=/path/to/file-prefix");
ABSL_FLAG(uint32_t, hz, 100,
"Base frequency at which the server performs other background tasks. "