pub struct RoTransaction<'env> { /* fields omitted */ }
An LMDB read-only transaction.
Resets the read-only transaction.
Abort the transaction like Transaction::abort
, but keep the
transaction handle. InactiveTransaction::renew
may reuse the handle.
This saves allocation overhead if the process will start a new read-only
transaction soon, and also locking overhead if
EnvironmentFlags::NO_TLS
is in use. The reader table lock is released,
but the table slot stays tied to its thread or transaction. Reader locks
generally don't interfere with writers, but they keep old versions of
database pages allocated. Thus they prevent the old pages from being
reused when writers commit new data, and so under heavy load the
database size may grow much more rapidly than otherwise.
Returns a raw pointer to the underlying LMDB transaction. Read more
Opens a database in the transaction. Read more
Open a new read-only cursor on the given database.
Gets the option flags for the given database in the transaction.
Executes the destructor for this type. Read more
Formats the value using the given formatter. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Immutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static