Guile library providing useful patterns when using Guile Fibers. This includes concurrency primitives, promises, non-blocking utilities, a resource pool, a web server implementation and more. https://cbaines.codeberg.page/guile-knots/
Find a file
Christopher Baines 094259b049 Add display, simple-format and format variants
Which call put-bytevector for performing output. When used in
combination with an unbuffered port, this should be safer than using
the normal Guile procedures, as I think it'll avoid writing to the
buffers, while still avoiding single character at a time output.

More research is needed though in to how to output to stdout/stderr
when using fibers with a parallelism greater than 1.
2026-01-12 10:00:35 +00:00
.forgejo/workflows Fix call to documenta 2025-07-10 16:15:58 +01:00
doc Add manual index 2025-06-24 20:58:04 +02:00
knots Add display, simple-format and format variants 2026-01-12 10:00:35 +00:00
tests Fix some issues handling head requests 2026-01-09 15:14:47 +00:00
.gitignore Enable the Makefile to run tests 2024-12-29 10:47:54 +00:00
bootstrap Initial commit 2024-12-16 09:18:12 +00:00
configure.ac Enable the Makefile to run tests 2024-12-29 10:47:54 +00:00
COPYING Initial commit 2024-12-16 09:18:12 +00:00
guile.am Initial commit 2024-12-16 09:18:12 +00:00
guix-dev.scm Add texinfo to guix-dev.scm 2025-06-24 20:50:44 +02:00
knots.scm Add display, simple-format and format variants 2026-01-12 10:00:35 +00:00
Makefile.am Add missing Makefile entries for the sort module 2026-01-05 10:51:24 +00:00
pre-inst-env.in Initial commit 2024-12-16 09:18:12 +00:00
README Initial commit 2024-12-16 09:18:12 +00:00
test-env.in Remove GUILE_AUTO_COMPILE=0 from test-env.in 2025-03-08 10:14:54 +00:00
tests.scm Use the knots backtrace printer for tests 2025-06-27 00:16:41 +02:00

-*- mode: org -*-

This Guile library provides useful patterns and functionality to use
Guile Fibers.