(1) 下载安装
① 首先下载Redis3.2,目前来讲,3.2是相对稳定且比较新的版本了。下载地址:https://github.com/MicrosoftArchive/redis/releases
② 安装很简单,将下载的文件进行解压即可。
③ 启动时,进入Redis的安装目录,在硬盘的路径一栏输入“cmd”,然后回车,即可直接cmd命令窗口,且目录已经是Redis的安装目录。
④ 输入命令:redis-server redis.windows.conf,如下图,说明启动成功。
(2)引入Redis依赖
这里要特别说明一下,因为我使用的SpringBoot是2.X,Redis是3.2,SpringBoot2.X默认采用lettuce,而1.5默认采用的是jdeis,所以在依赖里要排除lettuce。否则会报错
<!--spring2.0集成redis所需common-pool2-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.4.2</version>
</dependency>
<!-- redis依赖,2.0以上使用这个依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<!-- 缓存依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
(3) Redis配置文件
## Redis 配置
redis:
## Redis数据库索引(默认为0)
database: 1
## Redis服务器地址
host: 127.0.0.1
## Redis服务器连接端口
port: 6379
## Redis服务器连接密码(默认为空)
password:
lettuce:
pool:
## 连接池最大连接数(使用负值表示没有限制)
max-active: 8
## 连接池最大阻塞等待时间(使用负值表示没有限制)
max-wait: -1
## 连接池中的最大空闲连接
max-idle: 8
## 连接池中的最小空闲连接
min-idle: 0
## 连接超时时间(毫秒)