redis windows 安装 下载 常用参数
作者:互联网
下载地址
https://github.com/ServiceStack/redis-windows/tree/master/downloads
安装可视化工具
RedisDesktopManager
参数配置
redis.windows.conf
port 6379 端口号
bind 0.0.0.0 允许被别的计算机访问到
timeout 0 超时时间 0 不限制
logfile "logs.log" 100行 日志文件名
syslog-enabled no 开启 日志输出到文件
databases 16 114行左右 逻辑库默认16个, 可以修改
requirepass abc123456 388行左右 设置密码
maxclients 连接数量 422行左右
appendonly 开启AOF 备份
appendfsync 同步的频率 no|everysec|always always 不会丢失数据
注释这三个
#save 900 1
#save 300 10
#save 60 10000
占用空间
# maxmemory <bytes> 改为 maxmemory 500M
appendonly yes 521行左右 开启 AOF 备份
appendfilename "appendonly.aof" 文件名
# appendfsync always
appendfsync everysec
# appendfsync no
标签:appendfsync,appendonly,no,windows,redis,save,下载 来源: https://www.cnblogs.com/ericblog1992/p/11388354.html