Redis server 3.x for Linux
Build and use instruction.

Pre-install packages

CentOS 6/7

yum install make gcc wget

In Ubuntu

sudo apt-get update
sudo apt-get install install make gcc wget

For all:

service redis stop
yum uninstall redis
yum install make gcc wget

cd 
rm -rf redis
wget http://download.redis.io/releases/redis-3.0.6.tar.gz
tar xzf redis-3.0.6.tar.gz
mv redis-3.0.6 redis

cd redis
cd deps
make hiredis lua jemalloc linenoise
cd ..
make 
make install
cd utils
./install_server.sh
service redis_6379 restart

Done!