Module ockam_vault::storage

source ·
Expand description

Storage

Structs

  • Storage for a Vault data backed by a file The FileValueStorage implementation takes care of locking / unlocking the underlying file in the presence of concurrent accesses WARNING: This implementation provides limited consistency if the same file is reused from multiple instances and/or processes. For example, if one process deletes a value, the other process will still have it in its cache and return it on a Get query.