Windows 环境下 Redis 安装
1、redis官方下载地址:https://redis.io/download,redis 64位下载地址:https://github.com/MicrosoftArchive/redis/releases
2、解压 Redis-x64-3.2.100.zip,解压后的文件结构如下:
3、修改redis.windows.conf文件,设置maxmemory 大小
最好是 1G ,即 1024*1024*1024
设置redis密码
4、启动redis:
redis-server.exe redis.windows.conf
测试,成功安装:
5、将redis加入到windows的服务中
redis-server.exe --service-install redis.windows.conf --loglevel verbose --service-name Redis6379