yum install make mpfr gcc jemalloc tcl
yum install tcl ruby ruby-devel rubygems rpm-build
wget -c http://download.redis.io/releases/redis-stable.tar.gz
tar zxvf redis*.tar.gz
cd redis-stable
make
make install
ls /usr/local/bin/redis-*
cp src/redis-trib.rb /usr/local/bin
/etc/profile
echo "export PATH=/usr/local/bin/:\$PATH" >> /etc/profile
source /etc/profile
bash start-3-nodes.sh
#3台节点
bash start-6-nodes.sh
#6台节点
curl -L get.rvm.io | bash -s stable
sudo gpg2 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
curl -L get.rvm.io | bash -s stable
# 安装RVM
source /usr/local/rvm/scripts/rvm
rvm list known # 查看已有版本
rvm install 2.5 # 安装指定版本
rvm use 2.5.1 # 指定使用的ruby版本
gem install redis
bash replicas-3-nodes.sh
bash replicas-6-nodes.sh
# 选yes
redis-trib.rb info 127.0.0.1:7000
redis-cli -p 7000
cluster info
flushdb
#清理
keys *
#查看所有key
LLEN logstash-redis
#返回列表 key 的长度
set key value #赋值
get key #取值
del key [key.....]
#可以删除一个或多个键,返回值是删除的键的个数
#注意:不支持通配符删除