An in-memory key/value store that can be used with clients that supports redis. This is not a production ready application but more like redis. This is me doing some heavy stuffs in Golang :)
New released version is pushed to dockerhub with tags. Just pull that image from dockerhub and run the container.
docker pull neymarsabin/sack:latest
docker run -p 6379:6379 neymarsabin/sack:latestThe port exposed is 6379, so make sure you have the redis server stopped. You can use the redis-cli to connect to sackDB server.
Only basic commands supported at the moment.
- SET -> set a key and value
SET name neymar- GET -> get a value when key passed as arguments
GET name - HSET -> set a key to object value
HSET users u1 neymar
HSET users u1 sabinHSET does not support nested objects at the moment.
- HGET -> get value from the objects
HGET users u1
HGET users u2More commands and optimizations are on the way.