mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.serialization: Cache default serialization instance (fixes #1389)
Most serialization uses still use the default serialize() and thus duplicate much of the setup, which negates some of the performance improvements of the rewrite.
This commit is contained in:
parent
04384c44a0
commit
23eb311e20
1 changed files with 6 additions and 1 deletions
|
@ -272,10 +272,15 @@ local function deserialize(str)
|
|||
return ret;
|
||||
end
|
||||
|
||||
local default = new();
|
||||
return {
|
||||
new = new;
|
||||
serialize = function (x, opt)
|
||||
return new(opt)(x);
|
||||
if opt == nil then
|
||||
return default(x);
|
||||
else
|
||||
return new(opt)(x);
|
||||
end
|
||||
end;
|
||||
deserialize = deserialize;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue