Redis.io

From air
Jump to navigation Jump to search

http://redis.io/

Redis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.

Getting started with Redis

|refcard Getting started with Redis

Redis Docker Container

Read https://hub.docker.com/_/redis/

docker run --name my-redis -d redis


Start redis-cli

docker run --name my-redis-cli -it --link my-redis:redis --rm redis redis-cli -h redis -p 6379

Run commands

help
SET name Alice
GET name
GETSET name Bob
GET name

MSET fruit apple cookie choc-chip
MGET cookie fruit

GET counter
INCR counter
GET counter
INCRBY counter 3
GET counter

KEYS *
KEYS *o*

...


At the end, clean all with

docker rm -f my-redis
docker rm -f my-redis-cli
docker ps -a