DB.del

Deletes a key from the db

class DB
void
del
(
T
)

Throws

LeveldbException

Examples

auto opt = new Options;
opt.create_if_missing = true;
auto db = new DB(opt, "/my/db/");
db.put("User1", Slice("John Doe"));
db.del("User1");

Meta