Create a new insertion batch.
(&self)
| 151 | |
| 152 | /// Create a new insertion batch. |
| 153 | fn batched_insert(&self) -> InsertionBatch<'_, Self> { |
| 154 | InsertionBatch(self, rocksdb::WriteBatch::default()) |
| 155 | } |
| 156 | |
| 157 | /// Get the value at the given key. |
| 158 | /// |
no test coverage detected