官方下载安装:https://redis.io/download
Installation
Download, extract and compile Redis with:
$ wget http://download.redis.io/releases/redis-5.0.7.tar.gz
$ tar xzf redis-5.0.7.tar.gz
$ cd redis-5.0.7
$ make
The binaries that are now compiled are available in the src
directory. Run Redis with:
$ src/redis-server
You can interact with Redis using the built-in client:
$ src/redis-cli
redis> set foo bar
OK
redis> get foo
"bar"
可能报错,要安装make,gcc,gcc-c++,tcl
命令:make MALLOC=libc
参考:https://blog.youkuaiyun.com/qq_37859539/article/details/83715803