win下安装redis

redis官方不提供win安装程序,github上有个开源项目提供。

https://github.com/MSOpenTech/redis

微软开源团队维护

## 目录

 - 安装

 - 启动

 - 使用 

### 安装

下载地址:

https://github.com/MSOpenTech/redis

### 启动

- 找到安装目录

- 运行redis-server.exe

- 启动redis-cli.exe

### 

- redis-cli 命令行界面可以执行

'''

>set name koal

ok

>get name

"koal"

'''

原文地址:https://www.cnblogs.com/jiftle/p/6394421.html