Function open

Source
pub fn open<K, V>(table_name: &str) -> Result<TableConnection<K, V>>
where K: Key + Sized + 'static, V: Value + Sized + 'static,
Expand description

Open a thread-safe, but not multi-process-safe, connection to a specific table in a wrapped redb database.

Wrapped databases are pooled and will later support in-memory buffering with compression/encryption and periodic debounced flushing to disk.