Redis database CRUD operations using springboot redistemplate |spring data redis |

Опубликовано: 13 Октябрь 2024
на канале: Coding World
2,650
30

Hi All, In this video I have explained redis database and created springboot microservice for CRUD operations.
please watch video and let me know if you have any doubts.
GitHub link : https://github.com/dkambale/springboo...

docker run -d --name redis-stack-server -p 6379:6379 redis/redis-stack-server:latest

redis-cli -h localhost -c -p 6379

keys *

set key value

get key

del key

EXISTS key


dependency