Type Definition rocksdb::DBWithThreadMode

source ·
pub type DBWithThreadMode<T> = DBCommon<T, DBWithThreadModeInner>;
Expand description

A type alias to RocksDB database.

See crate level documentation for a simple usage example. See DBCommon for full list of methods.

Implementations§

Methods of DBWithThreadMode.

Opens a database with default options.

Opens the database with the specified options.

Opens the database for read only with the specified options.

Opens the database as a secondary.

Opens the database with a Time to Live compaction filter.

Opens the database with a Time to Live compaction filter and column family names.

Column families opened using this function will be created with default Options.

Opens a database with the given database with a Time to Live compaction filter and column family descriptors.

Opens a database with the given database options and column family names.

Column families opened using this function will be created with default Options.

Opens a database for read only with the given database options and column family names.

Opens a database for read only with the given database options and column family names.

Opens a database for ready only with the given database options and column family descriptors.

Opens the database as a secondary with the given database options and column family names.

Opens the database as a secondary with the given database options and column family descriptors.

Opens a database with the given database options and column family descriptors.

Removes the database entries in the range ["from", "to") using given write options.

Removes the database entries in the range ["from", "to") using default write options.