[−][src]Crate lever
Lever is a library for writing transactional systems (esp. for in-memory data). It consists of various parts:
sync: Synchronization primitives for transactional systemstable: Various KV table kinds backed by transactional algorithmstxn: Transactional primitives and management
Lever is using MVCC model to manage concurrency. It supplies building blocks for in-memory data stores for transactional endpoints, databases and systems. Unblocked execution path is main aim for lever while not sacrificing failover mechanisms.
Lever provides STM, lock-free, wait-free synchronization primitives and various other tools to facilitate writing transactional in-memory systems.
Lever is alpha stage software.
Modules
| prelude | Prelude of lever |
| sync | Synchronization primitives |
| table | Transactional in-memory table variations |
| txn | Transactional primitives and transaction management |
Structs
| Lever | Main management struct for transaction management. |
Functions
| lever | Instantiate lever instance |