module RocksDB::Commands
Included Modules
Direct including types
Defined in:
rocksdb/commands/basic.crrocksdb/commands/iteration.cr
Instance Method Summary
- #[](key)
- #[]=(key, value)
- #[]?(key)
- #binary_each(&)
- #binary_keys(limit = Int32::MAX)
- #delete(key : Bytes)
- #delete(key : String)
- #each(&)
- #get(key : Bytes) : Bytes
- #get(key : String) : String
- #get!(key : Bytes) : Bytes
- #get!(key : String) : String
- #get?(key : Bytes) : Bytes | Nil
- #get?(key : String) : String | Nil
- #keys(limit = Int32::MAX)
- #new_binary_iterator
- #new_iterator
- #put(key : String, value : String)
- #put(key : Bytes, value : Bytes)
- #put(key : String, value)