Deletes a key from the db
LeveldbException
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");
See Implementation
Deletes a key from the db