Deletes a key from the db
LeveldbException
1 auto opt = new Options; 2 opt.create_if_missing = true; 3 auto db = new DB(opt, "/my/db/"); 4 db.put("User1", Slice("John Doe")); 5 db.del("User1");
See Implementation
Deletes a key from the db