Module:LuaCache

From Notaclue Wiki

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

local p = {}
local cache = require 'mw.ext.LuaCache'
function p.set(frame)
	cache.set('luacache-extension-test', 'Value in cache')
end
function p.get(frame)
	return tostring( cache.get('luacache-extension-test') )
end
return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.