mirror of
https://github.com/gvx/bitser.git
synced 2024-11-11 01:44:21 +00:00
Merge pull request #2 from tapir/master
Add lua-MessagePack to benchmark
This commit is contained in:
commit
348511c702
6
main.lua
6
main.lua
@ -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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user