Crate rustlite_core

Crate rustlite_core 

Source
Expand description

§RustLite Core

Core types and implementations for RustLite embedded database.

§⚠️ Internal Implementation Detail

This crate is an internal implementation detail of RustLite.

Users should depend on the main rustlite crate instead, which provides the stable public API. This crate’s API may change without notice between minor versions.

# In your Cargo.toml - use the main crate, not this one:
[dependencies]
rustlite = "0.3"

Re-exports§

pub use error::Error;
pub use error::Result;

Modules§

error
Error types for RustLite.
format_version
File format versioning for SSTable, WAL, and Manifest
index
Indexing module for RustLite.
query
SQL-like query engine (v0.4+)
storage
Storage engine module.
transaction
Transaction management module with MVCC.

Structs§

Database
The main database handle.