diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-17 17:26:35 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-17 17:26:35 +0200 |
commit | 6ca78512fe08228c419bcdd06fd774c7a3b3e69f (patch) | |
tree | 3630d9cb8d45985b46e57330fb0988edef048f98 /common/src | |
parent | f9c95732f65d96103e253ec8716e73eb501a801a (diff) | |
download | jellything-6ca78512fe08228c419bcdd06fd774c7a3b3e69f.tar jellything-6ca78512fe08228c419bcdd06fd774c7a3b3e69f.tar.bz2 jellything-6ca78512fe08228c419bcdd06fd774c7a3b3e69f.tar.zst |
increase mem cache to 200M
Diffstat (limited to 'common/src')
-rw-r--r-- | common/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/config.rs b/common/src/config.rs index df16ef0..522fa0f 100644 --- a/common/src/config.rs +++ b/common/src/config.rs @@ -88,7 +88,7 @@ fn login_expire() -> i64 { 60 * 60 * 24 } fn max_in_memory_cache_size() -> usize { - 50_000_000 + 200_000_000 } fn return_true() -> bool { |