【springboot】整合redis

导读:本篇文章讲解 【springboot】整合redis,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

1.pom导入坐标

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

2.redis配置

spring:
  redis:
    host: 127.0.0.1
    port: 6379
    client-type: lettuce
#.lettuce与redis的区别
1.jedis连接redis服务器是直连模式,当多线程模式下使用jedis会存在线程安全问题,解决方案可以通过配置连接池使每个连接专用,这样整体性能会受影响
2.lettuce基于Netty框架与redis服务器进行连接,底层设计中采用StatefulRedisConnection。StatefulRedisConnection自身是线程安全的,可以保障并发访问安全问题,所以一个连接可以被多线程复用。lettuce也支持多连接实例一起工作

3.测试示例

package com.learning;

import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.ValueOperations;

/**
 * @Author wangyouhui
 * @Description 测试类
 **/
@SpringBootTest
public class RedisTest {

    @Autowired
    private RedisTemplate redisTemplate;

    @Test
    void set(){
        ValueOperations valueOperations = redisTemplate.opsForValue();
        valueOperations.set("key", "value");
    }

    @Test
    void get(){
        ValueOperations valueOperations = redisTemplate.opsForValue();
        Object value = valueOperations.get("key");
        System.out.println(value);
    }

}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/92345.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!