An in-memory array queue driver for the Alaska framework, version 0.13.2, intended only for development and testing. It stores queued tasks in a JavaScript array, which means data cannot be shared across multiple processes, is lost on process exit or crash, and may cause memory leaks. Its `pop(timeout)` function is not timely. No release cadence is defined. For production, use alaska-queue-redis or other drivers.
npm install alaska-queue-arrayNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows configuration of the array queue driver within the Alaska framework, setting the type, key, and idle count.
Use alaska-queue-redis or another persistent driver for production.
Use a driver backed by a shared store (e.g., Redis) for multi-process scenarios.
Do not rely on precise timeouts; redesign logic to be tolerant of delayed pops.
Limit queue size manually or use a production driver with built-in memory management.
Run `npm install alaska-queue-array` or add it to package.json.
Ensure configuration has type: 'alaska-queue-array' and that the queue initializes correctly.
Switch to a production-grade queue driver like alaska-queue-redis.
No dependency data recorded yet.