forked from fjpacheco/redis-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathredis.conf
More file actions
23 lines (18 loc) · 699 Bytes
/
redis.conf
File metadata and controls
23 lines (18 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Redis configuration file example.
#
# Note that in order to read the configuration file, Redis must be
# started with the file path as first argument:
#
# cargo run redis.conf
# Accept connections on the specified port, default is 6379.
port 6379
# Close the connection after a client is idle for N seconds (0 to disable).
timeout 10
# Specify the log file name. Also the empty string can be used to force
# Redis to log on the standard output. Note that if you use standard
# output for logging but daemonize, logs will be sent to /dev/null
logfile logs.txt
# The filename where to dump the DB
dbfilename name_file
# The verbose level. The default is zero, that is, no log at all.
verbose 0