MUC: Cache names of public rooms on eviction

This commit is contained in:
Kim Alvefur 2017-11-09 17:27:52 +01:00
parent e24d16dca8
commit fc6e0a089d

View file

@ -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);