From fb78cdade0bec10f76c82703e790b7efe9488544 Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Wed, 16 Jul 2025 22:44:20 -0400 Subject: [PATCH] Increase ring size from 128 -> 512 --- core/io/io_uring.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/io/io_uring.rs b/core/io/io_uring.rs index 036d861b2..cd6524fa7 100644 --- a/core/io/io_uring.rs +++ b/core/io/io_uring.rs @@ -16,7 +16,7 @@ use std::sync::Arc; use thiserror::Error; use tracing::{debug, trace}; -const ENTRIES: u32 = 128; +const ENTRIES: u32 = 512; const SQPOLL_IDLE: u32 = 1000; #[derive(Debug, Error)]