This commit is contained in:
Nikolay Kim 2025-01-31 20:24:36 +05:00
parent fc43822da2
commit 1ccbc4a523
4 changed files with 16 additions and 4 deletions

View file

@ -110,7 +110,7 @@ impl ServerBuilder {
self
}
/// Enable core affinity
/// Enable cpu affinity
///
/// By default affinity is disabled.
pub fn enable_affinity(mut self) -> Self {

View file

@ -1,5 +1,9 @@
# Changes
## [2.11.0] - 2025-01-31
* Cpu affinity support for server
## [2.10.0] - 2024-12-04
* Use updated Service trait

View file

@ -1,6 +1,6 @@
[package]
name = "ntex"
version = "2.10.0"
version = "2.11.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services"
readme = "README.md"
@ -68,8 +68,8 @@ ntex-service = "3.4"
ntex-macros = "0.1"
ntex-util = "2.8"
ntex-bytes = "0.1.27"
ntex-server = "2.6"
ntex-h2 = "1.5"
ntex-server = "2.7"
ntex-h2 = "1.8.1"
ntex-rt = "0.4.22"
ntex-io = "2.9"
ntex-net = "2.4"

View file

@ -310,6 +310,14 @@ where
self
}
/// Enable cpu affinity
///
/// By default affinity is disabled.
pub fn enable_affinity(mut self) -> Self {
self.builder = self.builder.enable_affinity();
self
}
/// Set io tag for web server
pub fn tag(self, tag: &'static str) -> Self {
self.config.lock().unwrap().tag = tag;