From 2709bb832ac9c2271a72fa7803451504b3422a58 Mon Sep 17 00:00:00 2001
From: Diogo Martins
Date: Wed, 27 May 2026 17:06:05 +0100
Subject: [PATCH] part 6
---
docs/blog/io-uring-minima-part-6.html | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/docs/blog/io-uring-minima-part-6.html b/docs/blog/io-uring-minima-part-6.html
index a45d52e..5c15b03 100644
--- a/docs/blog/io-uring-minima-part-6.html
+++ b/docs/blog/io-uring-minima-part-6.html
@@ -75,6 +75,17 @@ Load generators
gcannon (io_uring)
+ io_uring configuration
+
+ All io_uring variants share the same ring setup:
+
+
+ SINGLE_ISSUER + DEFER_TASKRUN
+ - Multishot accept and multishot recv (send is one-shot per response)
+ - No zero copy receive, no zero copy send
+ - Incremental buffer consumption disabled, similar performance for this specific benchmark
+
+
io_uring read+write with IVTS reactor inline continuations
This is the exact model explored throughout the series, expected to deliver high performance on synchronous test.