01 CentOS7 installation ssdb

ssdb performance has been and redis quite, but redis based on memory capacity problem is weakness, memory and higher cost. ssdb for this weakness, the use of hard disk storage. This article describes how to install ssdb.

1, environmental constraints

  • CentOS7 64-bit workstation
  • ssdb

2, software download

Baidu network disk:
Link: https://pan.baidu.com/s/1XDQwFJkq5Nssbr3LNUzkdQ
extraction code: tzdh
or by the following command:

wget --no-check-certificate https://github.com/ideawu/ssdb/archive/master.zip

3, operation

# 解压
unzip master.zip
# 进入ssdb-master,编译,安装
cd ssdb-master;
make;
make install;
# 启动服务
/usr/local/ssdb/ssdb-server /usr/local/ssdb/ssdb.conf
# 检验
netstat -luntp|grep 8888
# 客户端登录
/user/local/ssdb/ssdb-cli

After the client login, you can operate in a similar way to the redis, specifically refer to the following documents:
https://www.jianshu.com/p/26f6e85e600f

Guess you like

Origin www.cnblogs.com/alichengxuyuan/p/12577047.html