SQLite Backend#
This is an example backend for JetKV.
It can be used by inserting it into jetkv:
const jetkv = @import("jetkv");
const SQLite = @import("SQLite");
var kv = jetkv.KV(SQLite{
.path = "/tmp/example.db",
.truncate = true,
}).init(io, allocator);