博客
关于我
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 整形列的字节与存储范围
查看>>
mysql 断电数据损坏,无法启动
查看>>
MySQL 日期时间类型的选择
查看>>
Mysql 时间操作(当天,昨天,7天,30天,半年,全年,季度)
查看>>
MySQL 是如何加锁的?
查看>>
MySQL 是怎样运行的 - InnoDB数据页结构
查看>>
mysql 更新子表_mysql 在update中实现子查询的方式
查看>>
MySQL 有什么优点?
查看>>
mysql 权限整理记录
查看>>
mysql 权限登录问题:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)
查看>>
MYSQL 查看最大连接数和修改最大连接数
查看>>
MySQL 查看有哪些表
查看>>
mysql 查看锁_阿里/美团/字节面试官必问的Mysql锁机制,你真的明白吗
查看>>
MySql 查询以逗号分隔的字符串的方法(正则)
查看>>
MySQL 查询优化:提速查询效率的13大秘籍(避免使用SELECT 、分页查询的优化、合理使用连接、子查询的优化)(上)
查看>>
mysql 查询,正数降序排序,负数升序排序
查看>>
MySQL 树形结构 根据指定节点 获取其下属的所有子节点(包含路径上的枝干节点和叶子节点)...
查看>>
mysql 死锁 Deadlock found when trying to get lock; try restarting transaction
查看>>
mysql 死锁(先delete 后insert)日志分析
查看>>
MySQL 死锁了,怎么办?
查看>>