mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
MUC: Cache names of public rooms on eviction
This commit is contained in:
parent
e24d16dca8
commit
fc6e0a089d
1 changed files with 1 additions and 0 deletions
|
@ -118,6 +118,7 @@ local eviction_hit_rate = module:measure("room_eviction", "rate");
|
|||
local rooms = cache.new(module:get_option_number("muc_room_cache_size", 100), function (jid, room)
|
||||
module:log("debug", "Evicting room %s", jid);
|
||||
eviction_hit_rate();
|
||||
room_items_cache[room.jid] = room:get_public() and room:get_name() or nil;
|
||||
room_save(room, nil, true); -- Force to disk
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue