1 下载 redis
Redis 官方不支持windows 版本。但是微软的团队在 GitHub 维护了一份 windows 版本的 Redis,和官方提供相同的功能。
GitHub 地址:
在此页面可以选择下载 msi 的安装板本,或者 rar 的解压版本,或者源码。
这里我下载源码,得到 redis-3.0.zip
2 编译源代码
解压源代码,进入 msvs 目录,使用 vs2013 或者 2013 以上版本打开 RedisServer.sln
点击生成解决方案。
如果使用 vs2013,可以直接编译。如果使用更高的版本。请将菜单: 项目-属性-配置属性-常规-平台工具集,选择对应的 vs 的版本。不然会报 MSB8020 错误。
编译成功后,得到如下文件:
Open the solution file msvs\redisserver.sln in Visual Studio, select a build configuration (Debug or Release) and target (x64) then build.
This should create the following executables in the msvs$(Target)$(Configuration) folder:
-
redis-server.exe
-
redis-benchmark.exe
-
redis-cli.exe
-
redis-check-dump.exe
-
redis-check-aof.exe
阅读(1701) | 评论(0) | 转发(0) |