Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)