filed
Job queue using FUSE
git clone git://mccd.space/filed
| Log | Files | Refs | README | LICENSE |
commit 8e46e375ab84985545e6c4f94c63c48d6009726c parent c99997e86d89ea49ccdc5d65d2ef9348676c5f21 Author: Marc Coquand <marc@coquand.email> Date: Tue, 16 Dec 2025 17:30:13 +0100 docs Diffstat:
| M | README.md | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md @@ -2,7 +2,7 @@ *File d'attente* (queue in French) is a file-based job queue, written in Go. -File d'attente uses files and directories for manipulation. Create a job with `printf cmd > /pending/$id`, view running jobs with `ls /active`, and restart a failed job with `mv /failed/$id /pending`. +File d'attente uses files and directories for queue manipulation. Create a job with "`printf cmd > /pending/$id`", view running jobs with "`ls /active`", and restart a failed job with "`mv /failed/$id /pending`". The tool is intended for trusted, single-server workloads, as a companion queue to another application. File d'attente comes with automatic retries, timeout, and backoff built-in.