summaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index 1300e9a..2f4bbd8 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -19,6 +19,8 @@ pub struct Config {
pub log_level: String,
#[serde(default = "Config::default_max_body_size")]
pub max_body_size: u64,
+ #[serde(default = "Config::default_sqlite_thread_pool_size")]
+ pub sqlite_thread_pool_size: u32,
}
impl Config {
@@ -41,6 +43,10 @@ impl Config {
fn default_db_file() -> String {
String::from("kimikuri.db")
}
+
+ fn default_sqlite_thread_pool_size() -> u32 {
+ 16
+ }
}