Crate sov_schema_db

source ·
Expand description

This library implements a schematized DB on top of RocksDB. It makes sure all data passed in and out are structured according to predefined schemas and prevents access to raw keys and values. This library also enforces a set of specific DB options, like custom comparators and schema-to-column-family mapping.

It requires that different kinds of key-value pairs be stored in separate column families. To use this library to store a kind of key-value pairs, the user needs to use the define_schema! macro to define the schema name, the types of key and value, and name of the column family.

Re-exports

  • pub use crate::schema::Schema;

Modules

  • A type-safe interface over DB column families.

Macros

  • A utility macro to define Schema implementors. You must specify the Schema implementor’s name, the key type, the value type, and the column family name.

Structs

Enums

  • An error that occurred during (de)serialization of a Schema’s keys or values.

Constants

Traits