下载安装配置
1、下载解压缩Redis
2、下载解压缩redisclientwin32x86.2.0_itmop.com.zip
3、修改F:\ENV\Redis\redis.windows.conf
bind 127.0.0.1
protected-mode yes
4、新建startup.bat
@echo off
title Redis-Server
set Redis_HOME="F:\ENV\Redis"
cd\
cd %Redis_HOME%
redis-server.exe redis.windows.conf
exit
5、运行startup.bat
6、运行redis-benchmark -n 100000 -q,进行测试