提交 551a41df 编写于 作者: I Igor Canadi

Merge pull request #476 from alabid/alabid/add-to-simple-example

Added WriteBatch block to simple_example.cc
......@@ -20,6 +20,7 @@ make_config.mk
*.d-e
*.o-*
*.swp
*~
ldb
manifest_dump
......
column_families_example
simple_example
c_simple_example
compact_files_example
......@@ -27,14 +27,28 @@ int main() {
assert(s.ok());
// Put key-value
s = db->Put(WriteOptions(), "key", "value");
s = db->Put(WriteOptions(), "key1", "value");
assert(s.ok());
std::string value;
// get value
s = db->Get(ReadOptions(), "key", &value);
s = db->Get(ReadOptions(), "key1", &value);
assert(s.ok());
assert(value == "value");
// atomically apply a set of updates
{
WriteBatch batch;
batch.Delete("key1");
batch.Put("key2", value);
s = db->Write(WriteOptions(), &batch);
}
s = db->Get(ReadOptions(), "key1", &value);
assert(s.IsNotFound());
db->Get(ReadOptions(), "key2", &value);
assert(value == "value");
delete db;
return 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册