https://github.com/eiselems/ultimate-redis-boot
This is an example repository to discover ways of interacting with Redis (from a Spring Boot Application)
https://github.com/eiselems/ultimate-redis-boot
Last synced: 4 months ago
JSON representation
This is an example repository to discover ways of interacting with Redis (from a Spring Boot Application)
- Host: GitHub
- URL: https://github.com/eiselems/ultimate-redis-boot
- Owner: eiselems
- License: mit
- Created: 2019-04-18T22:25:33.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T09:02:27.000Z (over 2 years ago)
- Last Synced: 2025-03-18T00:36:39.963Z (4 months ago)
- Language: Java
- Homepage: https://programmerfriend.com/ultimate-guide-to-redis-cache-with-spring-boot-2-and-spring-data-redis/?gthb
- Size: 70.3 KB
- Stars: 37
- Watchers: 1
- Forks: 34
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ultimate-redis-boot
This is an example repository to discover ways of interacting with Redis (from a Spring Boot 2 Application).The blog post about this repository can be found [HERE](https://programmerfriend.com/ultimate-guide-to-redis-cache-with-spring-boot-2-and-spring-data-redis/?gthb).

## Run the service
```
./mvnw spring-boot:run
```## What it is / What it does
* A Spring Boot 2 Application
* Using @Cacheable, @CachePut, @CacheEvict to cache results of method invocations
* Use Redis to store the cached results
* Define different TTLs for different Caches