Module:Exclusive/loaddata

From Tensura: Reincarnated Wiki
Revision as of 10:55, 25 September 2026 by imported>Merge (merge.py)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Exclusive/loaddata/doc

-- This cache is set in Module:Exclusive/data
-- Note: 
-- If a template that's being used by large number of page changed, it will causing all of these page's cache to be invalidated and requires regeneration.
-- This may crash wiki platform and cause visitor get 5xx error. So we use luacache to decouple data template and template which uses it.
-- By doing this, editing on data template won't cause massive pages to be regenerated.
local cache = require 'mw.ext.LuaCache'
info = cache.get(':_exclusive:data')
if not info then
	require('Module:Exclusive/data').purge()
	info = cache.get(':_exclusive:data') or {}
end
return info