发布网友 发布时间:2022-04-29 15:13
共2个回答
懂视网 时间:2022-04-07 23:40
github.com/ideawu/ssdb/archive/master.zip unzip master cd ssdb-master make # optional, install ssdb in /usr/local/ssdb sudo make install# start master ./ssdb-server ssdb.conf # or start as daemon ./ssdb-server -d ssdb.conf
adeMacBook-Pro:ssdb-master apple$ ./tools/ssdb-cli -p 8888 ssdb (cli) - ssdb command line tool. Copyright (c) 2012-2015 ssdb.io ‘h‘ or ‘help‘ for help, ‘q‘ to quit. ssdb-server 1.9.0 ssdb 127.0.0.1:8888> set a 1 ok (0.000 sec) ssdb 127.0.0.1:8888> get a 1 (0.000 sec) ssdb 127.0.0.1:8888> set b 2 ok (0.000 sec) ssdb 127.0.0.1:8888> get b 2 (0.000 sec) ssdb 127.0.0.1:8888>
参考:
http://ssdb.io/zh_cn/
http://www.ttlsa.com/redis/ssdb-redis-alternatives/
ssdb使用
标签:
热心网友 时间:2022-04-07 20:48
在centos 7上使用python3.5, 系统本身带有python2.7, 自己没有将默认的python从2.7链接为3.5。 然后安装python3使用的包: ssdb, 安装方式 pip3 install ssdb,或者 直接下载包源文件,进入文件内,安装 python3 setup.py install 。