@rvkang/batch-inmemory
v0.1.0
Published
In-memory storage adapter for nest-batch tests and examples.
Maintainers
Readme
@rvkang/batch-inmemory
In-memory DatabaseBatchStorage implementation for nest-batch tests and
local examples.
Install
pnpm add @rvkang/batch-inmemoryCreate storage
import { InMemoryBatchStorage } from "@rvkang/batch-inmemory";
const storage = new InMemoryBatchStorage();Operational note
This storage is non-durable: all repository, checkpoint, execution-context, and lock state is lost when the process exits. Do not use it for production durability, restart recovery, or coordination between processes; choose a SQL adapter instead.
