Gets an entry from the DB
Only accepts an array for the key. V must be convertable from char array.
true if the key was found in 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")); string name; enforce(db.get("User1", name)); assert(name == "John Doe");
See Implementation
Gets an entry from the DB
Only accepts an array for the key. V must be convertable from char array.