YouChain_Doc/部署手册/Rids配置.md

22 lines
368 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

修改redis 存储规则
修改配置文件redis.windows-service.conf
```
appendfsync always //每次修改写入都同步到磁盘/最慢,也最安全
# appendfsync everysec //每秒同步一次
# appendfsync no        //系统自动同步 速度最快
```
启动redis 改用命令启用
```
redis-server.exe redis.windows-service.conf
```