class RocksDB::WriteBatch
- RocksDB::WriteBatch
- Reference
- Object
Defined in:
rocksdb/write_batch.crConstructors
Instance Method Summary
- #clear
- #count
- #delete(column_family : ColumnFamilyHandle, key : Bytes) : Nil
- #delete(key : Bytes) : Nil
- #delete_range(column_family : ColumnFamilyHandle, key_start : Bytes, key_end : Bytes) : Nil
- #delete_range(key_start : Bytes, key_end : Bytes) : Nil
- #finalize
- #put(column_family : ColumnFamilyHandle, key : Bytes, value : Bytes) : Nil
- #put(key : Bytes, value : Bytes) : Nil
- #to_unsafe : Pointer(LibRocksDB::WriteBatch)
Constructor Detail
Instance Method Detail
def delete_range(column_family : ColumnFamilyHandle, key_start : Bytes, key_end : Bytes) : Nil
#