Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions server.conf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Server configuration
# port 5995
port 5995
logs-enabled true
verbose false
daemonize false
show-logo true
# The event-loop-max-events configuration defines the maximum number of events that
# can be processed at one time during an iteration of the event loop
event-loop-max-events 100000
unixsocket /var/run/fkvs/fkvs.sock
# unixsocket /var/run/fkvs/fkvs.sock
# Enable io_uring for pro-reactive I/O handling on Linux
use-io-uring true
2 changes: 1 addition & 1 deletion src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ server_t load_server_config(const char *path)
if (path) {
server.config_file_path = path;
} else {
server.config_file_path = DEFAULT_CLIENT_CONFIG_FILE_PATH;
server.config_file_path = DEFAULT_SERVER_CONFIG_FILE_PATH;
}

char line[1024];
Expand Down
Loading