博客
关于我
10-Redis6-连接整合
阅读量:512 次
发布时间:2019-03-07

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

参考来源:

参考来源:

参考来源:

===============================================================

1、引入依赖

2、建立连接

3、常用操作

4、springboot整合redis

===============================================================

1、引入依赖

redis.clients
jedis
3.2.0

2、建立连接

Jedis jedis = new Jedis("192.168.181.138",6379);

3、常用操作

//获取所有数据Jedis jedis = new Jedis("192.168.181.138",6379);Set
keys = jedis.keys("*");keys.stream().forEach(s -> System.out.println(s));

4、springboot整合redis

引入依赖

org.springframework.boot
spring-boot-starter-data-redis
org.apache.commons
commons-pool2

配置redisbean

@Configurationpublic class RedisConfig {    @Bean    public RedisTemplate
redisTemplate(LettuceConnectionFactory connectionFactory) { RedisTemplate
redisTemplate = new RedisTemplate<>(); redisTemplate.setKeySerializer(new StringRedisSerializer()); redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer()); redisTemplate.setConnectionFactory(connectionFactory); return redisTemplate; }}

配置文件 application.properties

# Redis数据库索引(默认为0)spring.redis.database=0  # Redis服务器地址spring.redis.host= 192.168.181.138# Redis服务器连接端口spring.redis.port=6379  #超时时间spring.redis.timeout=1800000# 连接池最大连接数(使用负值表示没有限制) 默认 8spring.redis.lettuce.pool.max-active=20# 连接池最大阻塞等待时间(使用负值表示没有限制) 默认 -1spring.redis.lettuce.pool.max-wait=-1# 连接池中的最大空闲连接 默认 8spring.redis.lettuce.pool.max-idle=8# 连接池中的最小空闲连接 默认 0spring.redis.lettuce.pool.min-idle=0

测试controller

@Controllerpublic class DemoController {    @Autowired    private RedisTemplate redisTemplate;    @RequestMapping("/home")    @ResponseBody    public String setRedis(){        /*        redisTemplate.opsForValue();//操作字符串        redisTemplate.opsForHash();//操作hash        redisTemplate.opsForList();//操作list        redisTemplate.opsForSet();//操作set        redisTemplate.opsForZSet();//操作有序set         */        redisTemplate.opsForValue().set("123","1111111");        String o =(String) redisTemplate.opsForValue().get("123");        System.out.println(o);        return  o;    }}

 

转载地址:http://vdgjz.baihongyu.com/

你可能感兴趣的文章
MySQL(2)DDL详解
查看>>
MySQL(3)DML详解
查看>>
MySQL(4)运算符 | 关联查询详解
查看>>
MySQL(5)条件查询 | 单行函数 | 事务详解
查看>>
Mysql,group by分组查询、order by排序查询、join连接查询、union联合查询
查看>>
Mysql,sql文件导入和导出
查看>>
MYSQL:int类型升级到bigint,对PHP开发语言影响
查看>>
Mysql:mysql 5.X 报错 ERROR 1193 (HY000): Unknown system variable ‘validate_password_length‘
查看>>
MySQL:MySQL执行一条SQL查询语句的执行过程
查看>>
Mysql:SQL性能分析
查看>>
mysql:SQL按时间查询方法总结
查看>>
MySQL:什么样的字段适合加索引?什么样的字段不适合加索引
查看>>
MySQL:判断逗号分隔的字符串中是否包含某个字符串
查看>>
MySQL:某个ip连接mysql失败次数过多,导致ip锁定
查看>>
MySQL:索引失效场景总结
查看>>
Mysql:避免重复的插入数据方法汇总
查看>>
MyS中的IF
查看>>
M_Map工具箱简介及地理图形绘制
查看>>
m_Orchestrate learning system---二十二、html代码如何变的容易
查看>>
M×N 形状 numpy.ndarray 的滑动窗口
查看>>