Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kieranmueller/redis-springboot-api
Messing with Redis, caching
https://github.com/kieranmueller/redis-springboot-api
boot cache caching java redis spring
Last synced: about 1 month ago
JSON representation
Messing with Redis, caching
- Host: GitHub
- URL: https://github.com/kieranmueller/redis-springboot-api
- Owner: KieranMueller
- Created: 2023-08-14T18:45:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-15T22:18:04.000Z (over 1 year ago)
- Last Synced: 2024-04-20T13:09:11.767Z (9 months ago)
- Topics: boot, cache, caching, java, redis, spring
- Language: Java
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# redis-springboot-api
Messing with Redis, caching# Current Issues
- Products being saved through POST method currently need explicit unique ID, they are not being auto-generated/incremented.
Posted product will overwrite existing product with same ID
- Figure out how to cache GET all method? Will need to cacheput any creation methods# Current Functionality
- GET all products
- GET product by ID (Cacheable)
- POST new product (must send unique ID in json or it will overwrite existing product)
- DELETE product by ID (CacheEvict)