Redis database CRUD operations using springboot redistemplate |spring data redis | #redisdb #jedis

preview_player
Показать описание
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.

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
Рекомендации по теме
Комментарии
Автор

how I can store this data in db as well? Student entity I also wants to persist in database for permanent storage. how we can do this?

samirsavasani