mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 09:45:31 +00:00
udp: change default ring_size to 128
This commit is contained in:
parent
38a12411e7
commit
7ceb01f1ae
1 changed files with 2 additions and 3 deletions
|
|
@ -102,8 +102,7 @@ pub struct NetworkConfig {
|
||||||
pub poll_timeout_ms: u64,
|
pub poll_timeout_ms: u64,
|
||||||
/// Number of ring entries (io_uring backend only)
|
/// Number of ring entries (io_uring backend only)
|
||||||
///
|
///
|
||||||
/// Will be rounded to next power of two if not already one. Increasing
|
/// Will be rounded to next power of two if not already one.
|
||||||
/// this value can help throughput up to a certain point.
|
|
||||||
#[cfg(feature = "io-uring")]
|
#[cfg(feature = "io-uring")]
|
||||||
pub ring_size: u16,
|
pub ring_size: u16,
|
||||||
/// Store this many responses at most for retrying (once) on send failure
|
/// Store this many responses at most for retrying (once) on send failure
|
||||||
|
|
@ -132,7 +131,7 @@ impl Default for NetworkConfig {
|
||||||
socket_recv_buffer_size: 8_000_000,
|
socket_recv_buffer_size: 8_000_000,
|
||||||
poll_timeout_ms: 50,
|
poll_timeout_ms: 50,
|
||||||
#[cfg(feature = "io-uring")]
|
#[cfg(feature = "io-uring")]
|
||||||
ring_size: 1024,
|
ring_size: 128,
|
||||||
resend_buffer_max_len: 0,
|
resend_buffer_max_len: 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue