Download, extract and compile Redis with:
$ wget https://download.redis.io/releases/redis-6.2.6.tar.gz
$ tar xzf redis-6.2.6.tar.gz
$ cd redis-6.2.6
$ 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"
# 1. 安装 Redis
# 2. 复制仓库
git clone [email protected]:redis/redis.git
# 3. 修改配置
cd redis/utils/create-cluster
vim create-cluster
# 修改 BIN_PATH 为 redis-server 所在目录
BIN_PATH="/usr/local/bin/"
# 启动 redis-server
create-cluster start
# 建立集群
create-cluster create
https://oss.redis.com/redisbloom/Quick_Start/#launch-redisbloom-with-docker
docker run -p 6379:6379 --name redis-redisbloom redislabs/rebloom:latest