filed

Job queue using FUSE

git clone git://mccd.space/filed

commit 137d4c340bf0c859d1e450ccc0e9dedbb32d0839
parent aabfbb096d69aedc81a86c2fbd84560dbf9cde66
Author: Marc Coquand <marc@coquand.email>
Date:   Wed, 17 Dec 2025 12:00:00 +0100

Make concurrency support clearer

Diffstat:
MREADME.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -1,6 +1,6 @@
 # File d'attente
 
-*File d'attente* (queue in French) is a file-based job queue, written in Go.
+*File d'attente* (queue in French) is a concurrent file-based job queue, written in Go.
 
 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`".