Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/blog/io-uring-minima-part-6.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,17 @@ <h2>Load generators</h2>
<a href="https://github.com/MDA2AV/gcannon">gcannon (io_uring)</a>
</p>

<h2>io_uring configuration</h2>

<p>All io_uring variants share the same ring setup:</p>

<ul>
<li><code>SINGLE_ISSUER</code> + <code>DEFER_TASKRUN</code></li>
<li>Multishot accept and multishot recv (send is one-shot per response)</li>
<li>No zero copy receive, no zero copy send</li>
<li>Incremental buffer consumption disabled, similar performance for this specific benchmark</li>
</ul>

<h2>io_uring read+write with IVTS reactor inline continuations</h2>

<p>This is the exact model explored throughout the series, expected to deliver high performance on synchronous test.</p>
Expand Down
Loading