mv

Crates.iomv
lib.rsmv
version0.1.0
sourcesrc
created_at2024-08-26 14:18:58.36565
updated_at2024-08-29 08:06:32.620992
descriptionConcurrent multiple readers, single writer data structures
homepage
repositoryhttps://github.com/Erigara/mv
max_upload_size
id1352294
size60,489
Shanin Roman (Erigara)

documentation

README

Library provides single value and key-value map structures.

For the execution flow specific for the blockchains:

  1. transactions are grouped in blocks and executed one by one (every transaction is atomic)
  2. blocks are committed sequentially (every block is atomic as well so either effect of every successful transaction is visible or no effect)

Features:

  • single writer/multiple readers
  • transactional properties of transactions and blocks (rollback changes on drop or explicitly commit)
  • ability to revert changes created in the latest block
Commit count: 0

cargo fmt