✨ feat(config): option to keep the websurfx
server connection alive for a certain period for subsequent requests (#568)
This commit is contained in:
parent
408858a91e
commit
5d06cce220
4 changed files with 14 additions and 5 deletions
|
@ -37,13 +37,15 @@ pub struct Config {
|
|||
pub request_timeout: u8,
|
||||
/// It stores the number of threads which controls the app will use to run.
|
||||
pub threads: u8,
|
||||
/// Set the keep-alive time for client connections to the HTTP server
|
||||
pub client_connection_keep_alive: u8,
|
||||
/// It stores configuration options for the ratelimiting middleware.
|
||||
pub rate_limiter: RateLimiter,
|
||||
/// It stores the level of safe search to be used for restricting content in the
|
||||
/// search results.
|
||||
pub safe_search: u8,
|
||||
/// It stores the TCP connection keepalive duration in seconds.
|
||||
pub tcp_connection_keepalive: u8,
|
||||
pub tcp_connection_keep_alive: u8,
|
||||
/// It stores the pool idle connection timeout in seconds.
|
||||
pub pool_idle_connection_timeout: u8,
|
||||
}
|
||||
|
@ -135,9 +137,10 @@ impl Config {
|
|||
upstream_search_engines: globals
|
||||
.get::<_, HashMap<String, bool>>("upstream_search_engines")?,
|
||||
request_timeout: globals.get::<_, u8>("request_timeout")?,
|
||||
tcp_connection_keepalive: globals.get::<_, u8>("tcp_connection_keepalive")?,
|
||||
tcp_connection_keep_alive: globals.get::<_, u8>("tcp_connection_keep_alive")?,
|
||||
pool_idle_connection_timeout: globals.get::<_, u8>("pool_idle_connection_timeout")?,
|
||||
threads,
|
||||
client_connection_keep_alive: globals.get::<_, u8>("client_connection_keep_alive")?,
|
||||
rate_limiter: RateLimiter {
|
||||
number_of_requests: rate_limiter["number_of_requests"],
|
||||
time_limit: rate_limiter["time_limit"],
|
||||
|
|
|
@ -14,7 +14,7 @@ pub mod results;
|
|||
pub mod server;
|
||||
pub mod templates;
|
||||
|
||||
use std::{net::TcpListener, sync::OnceLock};
|
||||
use std::{net::TcpListener, sync::OnceLock, time::Duration};
|
||||
|
||||
use crate::server::router;
|
||||
|
||||
|
@ -113,6 +113,10 @@ pub fn run(
|
|||
.default_service(web::route().to(router::not_found)) // error page
|
||||
})
|
||||
.workers(config.threads as usize)
|
||||
// Set the keep-alive timer for client connections
|
||||
.keep_alive(Duration::from_secs(
|
||||
config.client_connection_keep_alive as u64,
|
||||
))
|
||||
// Start server on 127.0.0.1 with the user provided port number. for example 127.0.0.1:8080.
|
||||
.listen(listener)?
|
||||
.run();
|
||||
|
|
|
@ -81,7 +81,7 @@ pub async fn aggregate(
|
|||
.pool_idle_timeout(Duration::from_secs(
|
||||
config.pool_idle_connection_timeout as u64,
|
||||
))
|
||||
.tcp_keepalive(Duration::from_secs(config.tcp_connection_keepalive as u64))
|
||||
.tcp_keepalive(Duration::from_secs(config.tcp_connection_keep_alive as u64))
|
||||
.connect_timeout(Duration::from_secs(config.request_timeout as u64)) // Add timeout to request to avoid DDOSing the server
|
||||
.https_only(true)
|
||||
.gzip(true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue