From 1d75648d5bf12ac52937dcabe4fa70dda99cd12a Mon Sep 17 00:00:00 2001 From: LX <768863620@qq.com> Date: Thu, 12 Oct 2023 15:44:08 +0800 Subject: [PATCH] no message --- 部署手册/Rids配置.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 部署手册/Rids配置.md diff --git a/部署手册/Rids配置.md b/部署手册/Rids配置.md new file mode 100644 index 0000000..dea921a --- /dev/null +++ b/部署手册/Rids配置.md @@ -0,0 +1,21 @@ +修改redis 存储规则 + + + +修改配置文件redis.windows-service.conf + +``` +appendfsync always //每次修改写入都同步到磁盘/最慢,也最安全 +# appendfsync everysec //每秒同步一次 +# appendfsync no        //系统自动同步 速度最快 +``` + +启动redis 改用命令启用 + +``` +redis-server.exe redis.windows-service.conf +``` + + + +