mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-23 19:43:09 +00:00
lua serialize support
This commit is contained in:
15
lua-serialize/test2.lua
Normal file
15
lua-serialize/test2.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
local s = require "luaseri"
|
||||
|
||||
addressbook = {
|
||||
name = "Alice",
|
||||
id = 12345,
|
||||
phone = {
|
||||
{ number = "1301234567" },
|
||||
{ number = "87654321", type = "WORK" },
|
||||
}
|
||||
}
|
||||
|
||||
for i=1,100000 do
|
||||
local u = s.pack (addressbook)
|
||||
local t = s.unpack(u)
|
||||
end
|
||||
Reference in New Issue
Block a user