filed
Job queue using FUSE
git clone git://mccd.space/filed
| Log | Files | Refs | README | LICENSE |
commit 6de49402ff874eb0b44000dd383852d2bad5f9dc parent ced0151bc5a7d6b78aa7e5f8dc3c74eb768b269f Author: Marc Coquand <marc@coquand.email> Date: Mon, 15 Dec 2025 22:09:38 +0100 Readme Diffstat:
| M | README.md | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-) diff --git a/README.md b/README.md @@ -62,6 +62,12 @@ And you can restart a job by moving the job back to pending: $ mv /tmp/qj-jobs/failed/1 /tmp/qj-jobs/pending ``` +Finally, if you want to remove a completed or failed jobs: + +``` +$ rm /tmp/qj-jobs/failed/1 +``` + ## Design & Motivation If you're building any kind of web application, at some point you probably need a job queue. Whether that's for sending an email confirmation or batch process some files, many apps need it.