redis uses code example
Example 1: who uses redis
Redis built in client
$ src/redis-cli
redis> set foo bar
OK
redis> get foo
"bar"
Example 2: who uses redis
Redis launch from any dir
$ sudo make test install
$ redis-server
Redis built in client
$ src/redis-cli
redis> set foo bar
OK
redis> get foo
"bar"
Redis launch from any dir
$ sudo make test install
$ redis-server