mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2024-12-15 17:51:06 +00:00
parent
b82825cd6c
commit
8dd34b9ce3
3 changed files with 4 additions and 4 deletions
|
@ -74,7 +74,7 @@ ABSL_FLAG(string, unixsocket, "",
|
|||
"be used for listening for incoming connections.");
|
||||
ABSL_FLAG(string, unixsocketperm, "", "Set permissions for unixsocket, in octal value.");
|
||||
ABSL_FLAG(bool, force_epoll, false,
|
||||
"If true - uses linux epoll engine underneath."
|
||||
"If true - uses linux epoll engine underneath. "
|
||||
"Can fit for kernels older than 5.10.");
|
||||
|
||||
ABSL_FLAG(bool, version_check, true,
|
||||
|
|
|
@ -36,10 +36,10 @@ ABSL_FLAG(float, mem_defrag_threshold, 0.7,
|
|||
"defragmentation");
|
||||
|
||||
ABSL_FLAG(float, mem_defrag_waste_threshold, 0.2,
|
||||
"The ratio of wasted/commited memory above which we run defragmentation");
|
||||
"The ratio of wasted/committed memory above which we run defragmentation");
|
||||
|
||||
ABSL_FLAG(float, mem_defrag_page_utilization_threshold, 0.8,
|
||||
"memory page under utilization threshold. Ratio between used and commited size, below "
|
||||
"memory page under utilization threshold. Ratio between used and committed size, below "
|
||||
"this, memory in this page will defragmented");
|
||||
namespace dfly {
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ extern "C" {
|
|||
|
||||
ABSL_FLAG(int, replication_acks_interval, 3000, "Interval between acks in milliseconds.");
|
||||
ABSL_FLAG(bool, enable_multi_shard_sync, false,
|
||||
"Execute multi shards commands on replica syncrhonized");
|
||||
"Execute multi shards commands on replica synchronized");
|
||||
ABSL_FLAG(int, master_connect_timeout_ms, 20000,
|
||||
"Timeout for establishing connection to a replication master");
|
||||
ABSL_FLAG(int, master_reconnect_timeout_ms, 1000,
|
||||
|
|
Loading…
Reference in a new issue