Anonymous
×
Create a new article
Write your page title here:
We currently have 97 articles on The Dream Shrine. Type your article name above or click on one of the titles below and start writing!



The Dream Shrine

Module:UtilsCache: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

6 August 2024

  • curprev 10:0210:02, 6 August 2024MagicPixieDreamGirl talk contribs 362 bytes +362 Created page with "local p = {} local LuaCache = mw.ext.LuaCache function p.get(key) return LuaCache and LuaCache.get(key) end function p.set(key, value) if LuaCache then LuaCache.set(key, value) end end function p.setMulti(entries) if LuaCache then LuaCache.setMulti(entries) end end function p.delete(key) if LuaCache then LuaCache.delete(key) end end return p"