完成学习redis数据结构

This commit is contained in:
2026-03-07 14:43:43 +08:00
parent b7ad9b57c6
commit 88b40ba4a2
2 changed files with 95 additions and 53 deletions

View File

@@ -19,10 +19,14 @@
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Spring Boot Redis显式绑定版本 -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>4.4.6</version> <!-- 推荐使用稳定版 -->
</dependency>
</dependencies>
</project>