August 2017
Beginner to intermediate
284 pages
6h 51m
English
Redis is a key value data store. The key values can be strings, lists, sets, hashes, and so on. It is extremely fast because the entire dataset is stored in the memory. The following are the steps to install Redis:
sudo yum -y install make gcc cc
cd /home/$USER
Here, $USER is the name of the Linux user.
http://download.redis.io/releases/redis-2.6.16.tar.gz
tar -xvf redis-2.6.16.tar.gz
cd redis-2.6.16
make
sudo cp src/redis-server /usr/local/bin
sudo cp src/redis-cli /usr/local/bin
Read now
Unlock full access