aboutsummaryrefslogtreecommitdiff
path: root/src/example/db.cpp
blob: ee4e8fcd9f22803d44a51898e46d7b0d756850fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <crepe/api/Config.h>
#include <crepe/facade/DB.h>
#include <crepe/util/Log.h>

using namespace crepe;
using namespace std;

// run before main
static auto _ = []() {
	auto & cfg = Config::get_instance();
	cfg.log.level = Log::Level::TRACE;
	return 0;
}();

int main() {
	dbg_trace();

	DB db("file.db");

	const char * test_key = "test-key";
	string test_data = "Hello world!";

	dbg_logf("DB has key = {}", db.has(test_key));

	db.set(test_key, test_data);

	dbg_logf("key = \"{}\"", db.get(test_key));

	return 0;
}