We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7bba1d commit 6830cf7Copy full SHA for 6830cf7
src/server.rs
@@ -53,7 +53,7 @@ impl Server {
53
pub fn start_with_pool(&self, pg_pool: r2d2::Pool<PostgresConnectionManager<NoTls>>) {
54
let addr = format!("{}:{}", self.listen_addr, self.port);
55
let listener = TcpListener::bind(&addr).unwrap();
56
- let pool = ThreadPool::new(10);
+ let pool = ThreadPool::new(100);
57
let generator = RequestId::init();
58
59
log::info!("OxideDB listening on {}...", addr);
0 commit comments