Skip to content

iyifr/wiredtiger-zig

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wiredtiger-Zig

An experimental Zig wrapper for the WiredTiger database library.

Usage

const wtdb = @import("wtdb");

const db = wtdb.open("test.wt", .{
    .overwrite = true,
});

const cursor = db.openCursor("test", .{});  

cursor.insert("key", "value");

const value = cursor.search("key");

cursor.close();

db.close();

About

Playing around with wiredtiger and zig

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published