Redis基礎

(^11^)發表於2024-11-02

😎

Redis的三種Java客戶端對比

Springboot整合Redis

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

具體參考以下文章
https://springdoc.cn/spring-boot-data-redis/

RedisTemplate工具類使用

注入

@Autowired
private RedisTemplate redisTemplate;

使用

redisTemplate.opsForValue.set("name", "老王");
String name = redisTemplate.opsForValue.get("name");

相關文章