예제 #1
0
 @Override
 public int delete(String table, String key) {
   try {
     db.remove(key.getBytes());
   } catch (RocksDBException e) {
     System.out.format("[ERROR] caught the unexpceted exception -- %s\n", e);
     assert (false);
   }
   return 0;
 }