File Backend¶
Stores binary objects on the local filesystem beneath a single root directory. Every key is resolved to a file; intermediate directories are created automatically. Keys follow a flat keyspace model — no virtual directories in the API. Path traversal is prevented by resolving keys against an absolute root.
Properties¶
| Property | Level |
|---|---|
| Data durability | Host crash |
| Data sharing | Host-shared |
Limitations¶
- Keys must not start with
/(absolute paths rejected). - Resolved path must remain inside the
root; attempts to escape raiseBlobError. - No internal locking; concurrent access relies on filesystem-level atomicity of overwrite.