-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add speedb is awesome example to support new getting started instruct…
…ions(#378)
- Loading branch information
1 parent
66413ff
commit 2603cab
Showing
3 changed files
with
52 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ optimistic_transaction_example | |
options_file_example | ||
simple_example | ||
transaction_example | ||
speedb_is_awesome_example |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#include <iostream> | ||
|
||
#include "rocksdb/db.h" | ||
#include "rocksdb/options.h" | ||
|
||
using ROCKSDB_NAMESPACE::DB; | ||
using ROCKSDB_NAMESPACE::Options; | ||
using ROCKSDB_NAMESPACE::ReadOptions; | ||
using ROCKSDB_NAMESPACE::Status; | ||
using ROCKSDB_NAMESPACE::WriteOptions; | ||
|
||
#if defined(OS_WIN) | ||
std::string kDBPath = "C:\\Windows\\TEMP\\speedb_is_awesome_example"; | ||
#else | ||
std::string kDBPath = "/tmp/speedb_is_awesome_example"; | ||
#endif | ||
|
||
int main() { | ||
// Open the storage | ||
DB* db = nullptr; | ||
Options options; | ||
// create the DB if it's not already present | ||
options.create_if_missing = true; | ||
Status s = DB::Open(options, kDBPath, &db); | ||
assert(s.ok()); | ||
|
||
// append new entry | ||
std::string key = "key_1"; | ||
std::string put_value = "Speedb is awesome!"; | ||
s = db->Put(WriteOptions(), key, put_value); | ||
assert(s.ok()); | ||
|
||
// retrieve entry | ||
std::string get_value; | ||
s = db->Get(ReadOptions(), key, &get_value); | ||
assert(s.ok()); | ||
assert(get_value == put_value); | ||
std::cout << get_value << std::endl; | ||
|
||
// close DB | ||
s = db->Close(); | ||
assert(s.ok()); | ||
return 0; | ||
} |