SkyNet + Lua 学习教程


Lua:

Lua基础学习:

http://coolshell.cn/articles/10739.html


Lua手册:

http://www.codingnow.com/2000/download/lua_manual.html


SkyNet:

SkyNet设计综述:

http://blog.codingnow.com/2012/09/the_design_of_skynet.html


SkyNet blog:

http://forthxu.com/blog/skynet.html


SkyNet安装方法:

1. 使用yum安装autoconf jemalloc readline



2. 获取skynet源码  git clone https://github.com/cloudwu/skynet.git

3. 编译

cd skynet
export PLAT=linux
make

4. 运行Test
./skynet examples/config # Launch first skynet node  (Gate server) and a skynet-master (see config for standalone option)
./3rd/lua/lua examples/client.lua # Launch a client, and try to input hello.


SkyeNet下MySql使用

1. 将example中config文件的运行目录由main改为mian_mysql



猜你喜欢

转载自blog.csdn.net/johnhill_/article/details/70225970