re-add caching (featuring Redis!!!!!)
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 38s

This commit is contained in:
Lee
2024-06-26 14:05:51 +01:00
parent b3a5a4c02e
commit 3fc26583f2
7 changed files with 84 additions and 8 deletions

View File

@ -87,7 +87,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<!-- Libraries -->
@ -114,6 +114,10 @@
<artifactId>httpclient5</artifactId>
<version>5.3.1</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
<!-- Test Dependencies -->
<dependency>