view plugins/sql.lib.lua @ 5773:c9a712673d8a

mod_c2s: Add session:sleep() and session:wake() to pause a session (e.g. while waiting for an external event). Needs a gallon or two of testing.
author Matthew Wild <mwild1@gmail.com>
date Fri, 09 Aug 2013 11:10:22 +0100
parents 9916f0a2d178
children
line wrap: on
line source

local cache = module:shared("/*/sql.lib/util.sql");

if not cache._M then
	prosody.unlock_globals();
	cache._M = require "util.sql";
	prosody.lock_globals();
end

return cache._M;