node-persistent-queue
node-persistent-queue copied to clipboard
Simple SQLite backed Queue for long running sequential tasks in Node.js using setImmediate()
We've been exploring use of this library in a Kubernetes (K8s) environment, but the choice of Sqlite as a back end is possibly preventing that use: - Scaling in a...
I introduced a regression yesterday when patching the `PersistentQueue#add` method which prevents the "add" event from being emitted. A fix for that regression can be found [here](https://github.com/damoclark/node-persistent-queue/pull/21).
Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and a truthy...
Could you add support for node 14 by upgrading sqlite3 to version 5?
Bumps [tar](https://github.com/npm/node-tar) from 4.4.8 to 4.4.19. Commits 9a6faa0 4.4.19 70ef812 drop dirCache for symlink on all platforms 3e35515 4.4.18 52b09e3 fix: prevent path escape using drive-relative paths bb93ba2 fix: reserve...
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.19 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...
I've noticed what seems like an intermittent problem (no solid repro) around calling the `done` method on a queue. ``` Error occurred: TypeError: Cannot read property 'id' of undefined at...
In a following scenario crash will occur: 1. Open and start queue 2. Add new task, let it start 3. Stop and close queue before task completes 4. Make sure...