博客
关于我
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中的concat函数,concat_ws函数,concat_group函数之间的区别
查看>>
MySQL中的count函数
查看>>
MySQL中的DB、DBMS、SQL
查看>>
MySQL中的DECIMAL类型:MYSQL_TYPE_DECIMAL与MYSQL_TYPE_NEWDECIMAL详解
查看>>
MySQL中的GROUP_CONCAT()函数详解与实战应用
查看>>
MySQL中的IO问题分析与优化
查看>>
MySQL中的ON DUPLICATE KEY UPDATE详解与应用
查看>>
mysql中的rbs,SharePoint RBS:即使启用了RBS,内容数据库也在不断增长
查看>>
mysql中的undo log、redo log 、binlog大致概要
查看>>
Mysql中的using
查看>>
MySQL中的关键字深入比较:UNION vs UNION ALL
查看>>
mysql中的四大运算符种类汇总20多项,用了三天三夜来整理的,还不赶快收藏
查看>>
mysql中的字段如何选择合适的数据类型呢?
查看>>
MySQL中的字符集陷阱:为何避免使用UTF-8
查看>>
mysql中的数据导入与导出
查看>>
MySQL中的时间函数
查看>>
mysql中的约束
查看>>
MySQL中的表是什么?
查看>>
mysql中穿件函数时候delimiter的用法
查看>>
Mysql中索引的分类、增删改查与存储引擎对应关系
查看>>