LevelDB
是一個由Google公司所研發的键-值存储嵌入式數據庫管理系統編程庫,[2] 以開源的BSD許可證發佈。[3]
開發者 | |
---|---|
初始版本 | 2012年5月 |
穩定版本 | 1.22[1](2019年5月3日,21個月前) |
源代码库 | |
编程语言 | C++ |
操作系统 | 跨平台 |
类型 | 嵌入數據庫編程庫 |
许可协议 | BSD许可证 |
网站 | github |
例子
儲存鍵/值對,和查詢鍵的值:
#include "leveldb/db.h"
#include <iostream>
using namespace std;
int main(){
leveldb::DB *db;
leveldb::Options options;
options.create_if_missing = true;
// 開啟數據庫
leveldb::DB::Open(options, "/tmp/testdb", &db);
// 鍵 = MyKey29,值 = "Hello World!"
string key = "MyKey29", value = "Hello World!", result;
// 儲存 鍵/值對
db->Put(leveldb::WriteOptions(), key, value);
// 查詢 MyKey29 鍵的值
db->Get(leveldb::ReadOptions(), key, &result);
// 輸出值到屏幕
cout << "result = " << result << endl;
// 關閉數據庫
delete db;
return 0;
}
執行結果
(LevelDB安裝目錄為:leveldb-read-only)[6]
% g++ test.cc -Ileveldb-read-only/include -Lleveldb-read-only -lleveldb -lpthread % ./a.out result = Hello World!
语言的绑定
参考文献
外部連結
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.