1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-11-13 18:51:05 +01:00

fix: actually clear memory in the admin commands

This commit is contained in:
Timo Kösters 2023-07-10 16:27:42 +02:00
parent c17187777f
commit edd4a3733f
No known key found for this signature in database
GPG key ID: 0B25E636FBA7E4CB

View file

@ -1,7 +1,8 @@
use std::collections::BTreeMap;
use std::collections::{BTreeMap, HashMap};
use async_trait::async_trait;
use futures_util::{stream::FuturesUnordered, StreamExt};
use lru_cache::LruCache;
use ruma::{
api::federation::discovery::{ServerSigningKeys, VerifyKey},
signatures::Ed25519KeyPair,
@ -148,28 +149,36 @@ lasttimelinecount_cache: {lasttimelinecount_cache}\n"
fn clear_caches(&self, amount: u32) {
if amount > 0 {
self.pdu_cache.lock().unwrap().clear();
let c = &mut *self.pdu_cache.lock().unwrap();
*c = LruCache::new(c.capacity());
}
if amount > 1 {
self.shorteventid_cache.lock().unwrap().clear();
let c = &mut *self.shorteventid_cache.lock().unwrap();
*c = LruCache::new(c.capacity());
}
if amount > 2 {
self.auth_chain_cache.lock().unwrap().clear();
let c = &mut *self.auth_chain_cache.lock().unwrap();
*c = LruCache::new(c.capacity());
}
if amount > 3 {
self.eventidshort_cache.lock().unwrap().clear();
let c = &mut *self.eventidshort_cache.lock().unwrap();
*c = LruCache::new(c.capacity());
}
if amount > 4 {
self.statekeyshort_cache.lock().unwrap().clear();
let c = &mut *self.statekeyshort_cache.lock().unwrap();
*c = LruCache::new(c.capacity());
}
if amount > 5 {
self.our_real_users_cache.write().unwrap().clear();
let c = &mut *self.our_real_users_cache.write().unwrap();
*c = HashMap::new();
}
if amount > 6 {
self.appservice_in_room_cache.write().unwrap().clear();
let c = &mut *self.appservice_in_room_cache.write().unwrap();
*c = HashMap::new();
}
if amount > 7 {
self.lasttimelinecount_cache.lock().unwrap().clear();
let c = &mut *self.lasttimelinecount_cache.lock().unwrap();
*c = HashMap::new();
}
}