Redis is an open source advance key value cache and store. It is capable of storing data structures like strings, hashes, list, sets, bitmaps and hyperloglogs.
You can download and install Redis server using the following commands
wget http://download.redis.io/releases/redis-2.8.19.tar.gz
tar xzf redis-2.8.19.tar.gz
cd redis-2.8.19
make
By default it does not run in background. To run in background...
vi redis.conf
look for
daemonize no
and change to
daemonize yes
Post that run
src/redis-server
0 Comment(s)