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:
Kim Alvefur 2019-07-08 02:46:27 +02:00
parent 70e3e96c02
commit e081fd6642

View file

@ -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;
};