Registry / database / persy
library1.7.1rscratesunverified

A transactional persistence engine for Rust, providing ACID-compliant storage.

# Cargo.toml [dependencies] persy = "1.7.1"
INSTALL
IMPORT
SIG · PERSY
P
persy
databaserustv1.7.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Persy
use persy::Persy;

Open a Persy database, begin a transaction, insert a key-value pair, and commit.

use persy::Persy; fn main() -> persy::Result<()> { let mut persy = Persy::open("./test.persy")?; persy.begin()?; persy.insert("key", b"value")?; persy.commit()?; Ok(()) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.7.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Amazon
1
Resources
persy — cargo add persy · libregistry