Remove the database entry (if any) for "key". Returns OK on success, and a non-OK status on error. It is not an error if "key" did not exist in the database. @param key Key to delete within database @throws RocksDBException thrown if error happens in underlying native library. @deprecated Us
(final byte[] key)
| 1593 | * @deprecated Use {@link #delete(byte[])} |
| 1594 | */ |
| 1595 | @Deprecated |
| 1596 | public void remove(final byte[] key) throws RocksDBException { |
| 1597 | delete(key); |
| 1598 | } |
| 1599 | |
| 1600 | /** |
| 1601 | * Delete the database entry (if any) for "key". Returns OK on |