Add a Put key with value to currently opened file. @param key the specified key to be inserted. @param value the value associated with the specified key. @throws RocksDBException thrown if error happens in underlying native library.
(final Slice key, final Slice value)
| 101 | * native library. |
| 102 | */ |
| 103 | public void put(final Slice key, final Slice value) throws RocksDBException { |
| 104 | put(nativeHandle_, key.getNativeHandle(), value.getNativeHandle()); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Add a Put key with value to currently opened file. |