Expand description
Task persistence trait and in-memory implementation.
TaskStore abstracts task persistence so that the server framework can
be backed by any storage engine. InMemoryTaskStore provides a
pre-allocated HashMap-based implementation suitable for testing and
single-process deployments.
Structs§
- InMemory
Task Store - In-memory
TaskStorebacked by a pre-allocatedHashMapwith secondary indexes under a singleRwLock. - Task
Store Config - Configuration for
InMemoryTaskStore.