Merge pull request #2 from tapir/master

Add lua-MessagePack to benchmark
This commit is contained in:
Robin Wellner 2016-02-16 14:18:43 +01:00
commit 348511c702

View File

@ -3,6 +3,7 @@ local found_binser, binser = pcall(require, 'binser')
local found_ser, ser = pcall(require, 'ser')
local found_serpent, serpent = pcall(require, 'serpent')
local found_smallfolk, smallfolk = pcall(require, 'smallfolk')
local found_msgpack, msgpack = pcall(require, 'MessagePack')
local cases
local selected_case = 1
@ -35,6 +36,11 @@ if found_smallfolk then
desers.smallfolk = smallfolk.loads
end
if found_msgpack then
sers.msgpack = msgpack.pack
desers.msgpack = msgpack.unpack
end
local view_absolute = true
local resultname = "serialisation time in seconds"