Redis 在 Win10 下的安装
Redis 下载链接:hps://github.com/MicrosoArchive/redis/releases
下载完成后解压
1. 启 动 服 务 器 端 ( 在 redis 的 目 录 下 操 作 ) : redis-server.exe
redis.windows.conf
2. 启动客户端(新开 cmd 窗口,同样在 redis 目录下操作):
redis-cli.exe -h 127.0.0.1 -p 6379
设置键值对:set myKey abc
评论0