Files
skynet/examples/main.lua
2014-07-13 14:54:53 +08:00

20 lines
430 B
Lua

local skynet = require "skynet"
local max_client = 64
skynet.start(function()
print("Server start")
local console = skynet.newservice("console")
skynet.newservice("debug_console",8000)
skynet.newservice("simpledb")
local watchdog = skynet.newservice("watchdog")
skynet.call(watchdog, "lua", "start", {
port = 8888,
maxclient = max_client,
nodelay = true,
})
print("Watchdog listen on ", 8888)
skynet.exit()
end)