博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringBoot 整合Redis
阅读量:6293 次
发布时间:2019-06-22

本文共 857 字,大约阅读时间需要 2 分钟。

hot3.png

1. 官方介绍


2. 整合过程


1. 添加依赖

org.springframework.boot
spring-boot-starter-data-redis

2. 配置相关配置文件

# ========== redis基础配置 ============spring.redis.database=0spring.redis.host=127.0.0.1spring.redis.password=passwordspring.redis.port=6379## 连接超时时间 丹喂 ms(毫秒)spring.redis.timeout=3000# ========== redis线程池设置 ============# 连接池中的最大空闲连接,默认值是8spring.redis.pool.max-idle=200# 连接池中最小的空闲连接,默认值是0spring.redis.pool.min-idle=200# 如果赋值为-1,则表示不限制;pool已经分配了maxActive个jedis实例,则此时pool的状态为exhausted(耗尽)spring.redis.pool.max-active=2000# 等待可用连接的最大时间,单位毫秒,默认值为-1.表示永不超时spring.redis.pool.max-wait=1000

3. 简单使用Redis

  1. 注入

    @Autowiredprivate StringRedisTemplate redisTpl;
  2. 添加key/value

    redisTpl.opsForValue().set("name", "shadowolf");
  3. 获取key/value

    String value = redisTpl.opsForValue().get("name");

转载于:https://my.oschina.net/shadowolf/blog/1843021

你可能感兴趣的文章
索引失效 ORA-01502
查看>>
Oracle取月份,不带前面的0
查看>>
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>
如何查看Linux命令源码
查看>>
运维基础命令
查看>>
入门到进阶React
查看>>
SVN 命令笔记
查看>>
检验手机号码
查看>>
重叠(Overlapped)IO模型
查看>>
Git使用教程
查看>>
使用shell脚本自动监控后台进程,并能自动重启
查看>>
Flex&Bison手册
查看>>
solrCloud+tomcat+zookeeper集群配置
查看>>
/etc/fstab,/etc/mtab,和 /proc/mounts
查看>>
Apache kafka 简介
查看>>
socket通信Demo
查看>>
技术人员的焦虑
查看>>
js 判断整数
查看>>
mongodb $exists
查看>>