# quick **Repository Path**: jiosen/quick ## Basic Information - **Project Name**: quick - **Description**: A fast,scalable,distributed game server framework for skynet - **Primary Language**: Lua - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-12 - **Last Updated**: 2021-04-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ##Basic requirements [ubuntu kylin 14.04/16.04 lts](http://www.ubuntukylin.com/downloads/) [redis desktop manager](https://github.com/uglide/RedisDesktopManager/releases) ## Ubuntu setup ``` sudo apt-get install autoconf libreadline-dev git gitg ``` ## Building from source ``` git clone https://github.com/charleeli/quick.git cd quick make ``` ## Test ``` 启动账号服务器 ./build/bin/redis-server ./config/database/accountdb.conf 启动存储服务器 ./build/bin/redis-server ./config/database/gamedb.conf 启动登陆服务器和游戏服务器 ./build/bin/skynet config/config.login ./build/bin/skynet config/config.game ./build/bin/skynet config/config.game2 启动客户端 cd ./tool ../build/bin/lua client.lua ../build/bin/lua client2.lua 命令行输入 load_role gm {cmd="set level 99"} view_sign send_world_chat {msg = "hello everyone!"} send_private_chat {uuid = '58834458e428a6cf1b7aa91f', msg = 'hi 486'} send_private_mail {to_uuid = '58834458e428a6cf1b7aa91f',subject='quick',content='quick is good'} update_mailbox ``` ## Benchmark ``` cd ./tool/benchmark ../../build/bin/lua benchmark.lua -s ./script/sign.lua ../../build/bin/lua client.lua 命令行输入 script ./script/sign.lua ```