MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / read_txn

Method read_txn

atomic-core/src/pristine/txn/pristine.rs:284–287  ·  view source on GitHub ↗

Begin a read-only transaction Read transactions can run concurrently with other read transactions and with a single write transaction.

(&self)

Source from the content-addressed store, hash-verified

282 /// Read transactions can run concurrently with other read transactions
283 /// and with a single write transaction.
284 pub fn read_txn(&self) -> PristineResult<ReadTxn> {
285 let txn = self.db.begin_read()?;
286 Ok(ReadTxn::new(txn))
287 }
288
289 /// Begin a read-write transaction
290 ///

Calls

no outgoing calls