filed

Job queue using FUSE

git clone git://mccd.space/filed

commit a7604e6923b455e29d342100bad28b952a684e19
parent c50459b579f1246acc81f98b35bf00f7dfef51d3
Author: Marc Coquand <marc@coquand.email>
Date:   Tue, 16 Dec 2025 17:14:47 +0100

README

Diffstat:
MREADME.md | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -2,10 +2,10 @@
 
 *File d'attente* (queue in French) is a file-based job queue, written in Go.
 
-The tool is intended for trusted, single-server workloads, as a companion queue to another application. File d'attente makes it easy to inspect and rerun jobs that have failed, and comes with automatic retries, timeout, backoff built-in.
-
 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`.
 
+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.
+
 File d'attente works well with other tools in the ecosystem, for example:
 
 - Create periodic jobs using cron