您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)SSDB如何安裝和使用的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
介紹:SSDB是一個(gè)高性能的支持豐富數(shù)據(jù)結(jié)構(gòu)的 NoSQL 數(shù)據(jù)庫, 使用硬盤存儲(chǔ),使用Google高性能的存儲(chǔ)引擎LevelDB,可以用于替代 Redis.
SSDB特性:
替代 Redis 數(shù)據(jù)庫, Redis 的 100 倍容量
LevelDB 網(wǎng)絡(luò)支持, 使用 C/C++ 開發(fā)
Redis API 兼容, 支持 Redis 客戶端
適合存儲(chǔ)集合數(shù)據(jù), 如 list, hash, zset...
客戶端 API 支持的語言包括: C++, PHP, Python, Java, Go
持久化的隊(duì)列服務(wù)
主從復(fù)制, 負(fù)載均衡
下載:
# wget --no-check-certificate https://github.com/ideawu/ssdb/archive/master.zip
# unzip master
# cd ssdb-master
編譯:
# make
編譯報(bào)錯(cuò):
Makefile:4: build_config.mk: No such file or directory
make: *** No rule to make target `build_config.mk'. Stop.
解決方法:
# yum install -y autoconf
繼續(xù)編譯,又報(bào)錯(cuò):
make[1]: Leaving directory `/root/ssdb/ssdb-master/src/client'
cd src/ssdb; make
make[1]: Entering directory `/root/ssdb/ssdb-master/src/ssdb'
g++ -DNDEBUG -D__STDC_FORMAT_MACROS -Wall -O2 -Wno-sign-compare -I "/root/ssdb/ssdb-master/deps/leveldb-1.20/include" -I "/root/ssdb/ssdb-master/deps/jemalloc-4.1.0/include" -c ssdb_impl.cpp
g++ -DNDEBUG -D__STDC_FORMAT_MACROS -Wall -O2 -Wno-sign-compare -I "/root/ssdb/ssdb-master/deps/leveldb-1.20/include" -I "/root/ssdb/ssdb-master/deps/jemalloc-4.1.0/include" -c iterator.cpp
g++ -DNDEBUG -D__STDC_FORMAT_MACROS -Wall -O2 -Wno-sign-compare -I "/root/ssdb/ssdb-master/deps/leveldb-1.20/include" -I "/root/ssdb/ssdb-master/deps/jemalloc-4.1.0/include" -c options.cpp
g++ -DNDEBUG -D__STDC_FORMAT_MACROS -Wall -O2 -Wno-sign-compare -I "/root/ssdb/ssdb-master/deps/leveldb-1.20/include" -I "/root/ssdb/ssdb-master/deps/jemalloc-4.1.0/include" -c t_kv.cpp
g++ -DNDEBUG -D__STDC_FORMAT_MACROS -Wall -O2 -Wno-sign-compare -I "/root/ssdb/ssdb-master/deps/leveldb-1.20/include" -I "/root/ssdb/ssdb-master/deps/jemalloc-4.1.0/include" -c t_hash.cpp
t_hash.cpp: In member function ‘virtual int64_t SSDBImpl::hfix(const Bytes&)’:
t_hash.cpp:288: error: ‘UINT64_MAX’ was not declared in this scope
make[1]: *** [t_hash.o] Error 1
make[1]: Leaving directory `/root/ssdb/ssdb-master/src/ssdb'
解決方法:
#cd /root/ssdb/ssdb-master/src/ssdb
編輯t_hash.h文件,在#define SSDB_HASH_H_下面添加如下行:
#ifndef UINT64_MAX
#define UINT64_MAX (18446744073709551615ULL)
#endif
保存退出
#cd /root/ssdb/ssdb-master
#make
再次編譯成功通過。
安裝:
#make install
啟動(dòng):
#./ssdb-server -d ssdb.conf
ssdb-server 1.9.7
Copyright (c) 2012-2015 ssdb.io
停止:
#./ssdb-server ssdb.conf -s stop
ssdb-server 1.9.7
Copyright (c) 2012-2015 ssdb.io
使用:
#./tools/ssdb-cli -p 8888
No module named readline
ssdb (cli) - ssdb command line tool.
Copyright (c) 2012-2016 ssdb.io
'h' or 'help' for help, 'q' to quit.
ssdb-server 1.9.7
ssdb 127.0.0.1:8888>
ssdb 127.0.0.1:8888> set hello world
ok
(0.002 sec)
ssdb 127.0.0.1:8888>
ssdb 127.0.0.1:8888>
ssdb 127.0.0.1:8888> get hello
world
(0.002 sec)
感謝各位的閱讀!關(guān)于“SSDB如何安裝和使用”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。