Installation
Download, extract and compile Redis with:
$ wget http://download.redis.io/releases/redis-3.2.5.tar.gz
$ tar xzf redis-3.2.5.tar.gz
$ cd redis-3.2.5
$ 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"
本文提供了一步一步的指导来帮助读者下载、解压并编译Redis 3.2.5版本。通过提供的命令,读者可以轻松地完成Redis的安装,并使用内置客户端进行基本操作测试。
2156

被折叠的 条评论
为什么被折叠?



