Increase ring size from 128 -> 512

This commit is contained in:
PThorpe92
2025-07-16 22:44:20 -04:00
parent 4d09f1ab65
commit fb78cdade0

View File

@@ -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)]