Expand description
Persistent storage for accounts.
For more information, see:
https://docs.gemachain.com/implemented-proposals/persistent-account-storage
Modules§
Structs§
- Account
Meta - This struct will be backed by mmaped and snapshotted data files. So the data layout must be stable and consistent across the entire cluster!
- Append
Vec - A thread-safe, file-backed block of memory used to store
Accountinstances. Append operations are serialized such that only one thread updates the internalappend_lockat a time. No restrictions are placed on reading. That is, one may read items from one thread while another is appending new items. - Stored
Account Meta - References to account data stored elsewhere. Getting an
Accountrequires cloning (seeStoredAccountMeta::clone_account()). - Stored
Meta - Meta contains enough context to recover the index from storage itself This struct will be backed by mmaped and snapshotted data files. So the data layout must be stable and consistent across the entire cluster!