Basic command
Download at local (Option 1)
Download from:
https://redis.io/Β
Download at docker (Option 2)
docker pull redis:latest
docker run -itd --name my-redis -p 6379:6379 redis
docker exec -it redis-test /bin/bash
# From inside
redis-cli
pingLogin
redis-cli -h 1.1.1.1 -p 6379See all informations
infoGet all the keys
keys *Get specific keys values
get <name_key>
get agesLast updated on