forked from mirror/ledisdb
fix type
This commit is contained in:
parent
0009fe83b9
commit
e343ca0dc0
|
@ -113,7 +113,7 @@ type Config struct {
|
|||
|
||||
ConnReadBufferSize int `toml:"conn_read_buffer_size"`
|
||||
ConnWriteBufferSize int `toml:"conn_write_buffer_size"`
|
||||
ConnKeepaliveInterval int `toml:"conn_keepavlie_interval"`
|
||||
ConnKeepaliveInterval int `toml:"conn_keepalive_interval"`
|
||||
|
||||
TTLCheckInterval int `toml:"ttl_check_interval"`
|
||||
}
|
||||
|
|
|
@ -50,7 +50,7 @@ conn_write_buffer_size = 10240
|
|||
|
||||
# if connection receives no data after n seconds, it may be dead, close
|
||||
# 0 to disable and not check
|
||||
conn_keepavlie_interval = 0
|
||||
conn_keepalive_interval = 0
|
||||
|
||||
# checking TTL (time to live) data every n seconds
|
||||
# if you set big, the expired data may not be deleted immediately
|
||||
|
|
Loading…
Reference in New Issue