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

Method read_txn

atomic-core/src/pristine/txn/pristine.rs:285–288  ·  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

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

Calls

no outgoing calls