leveldbd是一个nosql数据库,底层使用leveldb作为存储引擎,提供REST接口。
提供的特性包括
使用了C++11,需要g++4.8 在ubuntu14上测试
##编译运行
git clone https://github.com/yedf/leveldbd.git
cd leveldbd
sh bootstrap.sh
make
./leveldbd
##主从复制
https://github.com/yedf/leveldbd/blob/master/master-slave.md
##leveldbd REST接口
###Get
curl localhost/d/key1
###Set
curl -d"value1" localhost/d/key1
###Delete
curl -X"DELETE" localhost/d/key1
###Navigate 网页方式进行浏览与管理
localhost/nav-next/begin-key
###Batch-Get
localhost/batch-get/
request body data format is key-format. (format detail can be found in the end)
response data format is kv-format
###Batch-Set
curl -X"POST" localhost/batch-set/
request body data format is kv-format.
###Batch-Delete
curl -X"DELETE" localhost/batch-delete/
request body data format is key-format
###Range-Get
localhost/range-get/begin-key?end=end-key&inc=1
query 'end' is optional which specify the end key (excluded in response), default get untill end
query 'inc' is optional which specify whether the begin key should be included in response. default 0
response data format is kv-format.
###body format kv-format:'\n\n\n\n0\n\n\n-1\n\n...' value len: -1 indicate key not exist 0 value lenght is 0
key-format: '\n...'
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。
1. 开源生态
2. 协作、人、软件
3. 评估模型