mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.sql: Remove built-in engine caching. This is the wrong layer to do this, and unintentionally sharing connections could cause problems (e.g. when interleaving multiple queries and result fetching)
This commit is contained in:
parent
41996240ed
commit
3edc813e77
1 changed files with 3 additions and 8 deletions
11
util/sql.lua
11
util/sql.lua
|
@ -283,14 +283,9 @@ function db2uri(params)
|
|||
path = params.database,
|
||||
};
|
||||
end
|
||||
local engine_cache = {}; -- TODO make weak valued
|
||||
function create_engine(self, params)
|
||||
local url = db2uri(params);
|
||||
if not engine_cache[url] then
|
||||
local engine = setmetatable({ url = url, params = params }, engine_mt);
|
||||
engine_cache[url] = engine;
|
||||
end
|
||||
return engine_cache[url];
|
||||
|
||||
function create_engine(self, params, onconnect)
|
||||
return setmetatable({ url = db2uri(params), params = params, onconnect = onconnect }, engine_mt);
|
||||
end
|
||||
|
||||
return _M;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue