Storage
ActorStorage is three methods and an etag. Everything the runtime promises
about persistence — conflict detection, migration write-back, crash-resumable tasks — rides
that one seam.
The shipped providers
| Provider | From | Use |
|---|---|---|
memoryStorage() | @sigx/actors/host | tests and dev |
fileStorage({ dir }) | @sigx/actors/node | dev — one cat-able JSON file per actor |
redisStorage | @sigx/actors-redis | production |
pgStorage | @sigx/actors-pg | production |
surrealStorage | @sigx/actors-surreal | production |
durableObjectStorage | @sigx/actors-cloudflare | Cloudflare |
defineActorApp({ storage: fileStorage({ dir: '.actors' }) });
memoryStorage() is the default when you configure nothing, which is fine for a first look
and wrong for anything else — including dev, where it means every actor-file edit resets your
state.
The seam
interface ActorStorage {
load(type: string, key: string): Promise<ActorStorageRecord | undefined>;
save(type: string, key: string, record: ActorStorageRecord): Promise<void>;
clear(type: string, key: string): Promise<void>;
}
A record carries the encoded state and an etag. save must reject with
ActorStorageConflict when the etag it was handed is not the one currently stored — that
compare-and-set is what makes
ActorStateConflictError possible, and
without it a partition silently loses writes.
Implementing one is a small job for any database that can do a conditional update. What it must get right:
- Compare-and-set on the etag, atomically. A read-then-write is not enough.
- Round-trip the encoded record unchanged. The codec has already run; do not re-serialize.
undefinedfor a missing record, not an empty one — that is what selects the freshstate(key)path and skipsmigrateState.
The ownership contract
Both halves of the seam say who owns the tree, and they say opposite things:
| contract | |
|---|---|
save(state) | takes ownership. The caller must not mutate the tree afterwards; an implementation may store it by reference rather than copying. |
load() | hands ownership over. The returned record is the caller's to mutate freely — never a shared, frozen or cached object. |
The host always passes save a codec-fresh tree, so a provider that keeps the reference is
safe and skips a clone. The load side is the one to be careful about: returning a cached
record means the next activation mutates the copy your provider is still holding.
This is what makes memoryStorage correct without cloning on save while still cloning on
load — a stored value never aliases live activation state.
Choosing one in production
Two questions decide it.
Do you already run one of these? If Postgres is in your stack,
@sigx/actors-pg gives you storage, membership, the
directory and reminders on one pool, with the expiry running on the database clock. If Redis
is, @sigx/actors-redis gives you the same minus
reminders, on one client.
Are you on Cloudflare? Then the question does not arise — the Durable Object is the storage, and the platform is the cluster. See Cloudflare Workers.
Storage and the cluster providers are independent choices. Kubernetes membership plus a Redis directory plus Postgres storage is a perfectly ordinary configuration:
cluster({
providers: { membership: k8sMembership(), directory: redisDirectory(client) },
advertise,
secret: process.env.HOST_SECRET,
});
Decorating storage
A plugin can wrap the configured storage rather than replace it:
registry.decorateStorage((inner) => ({
async load(type, key) {
const t = performance.now();
try { return await inner.load(type, key); }
finally { record(performance.now() - t); }
},
save: inner.save,
clear: inner.clear,
}));
Decorators chain, and the last registered is outermost. Encryption at rest, tenant prefixing and audit logging all fit here without the actor code knowing.
A decorator that caches a load() result is wrong. load hands
the record to the caller to mutate, so serving the same object twice means the second
activation is mutating the first one's state. Cache the encoded bytes and rebuild, or do not
cache at all.
Next steps
- State & persistence — what the runtime does with it.
- Clustering — membership and the directory.
- The app —
decorateStorageand the other hooks.
