Redis 3.2 is the previous stable release. Does not include all the improvements in Redis 4.0 but is a very battle tested release, probably a good pick for critical applications while 4.0 matures more in the next months.
安装redis服务
1 下载redis
cd /usr/local/ 进入安装目录
wget http://download.redis.io/redis-stable.tar.gz
2 解压安装
tar xvzf redis-stable.tar.gz
cd redis-stable
make && make install
3 配置redis
拷贝配置文件到/etc/redis/redis.conf
cp redis.conf /etc/redis/