├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── abort.lua ├── clearcache.lua ├── hello-cluster-snax ├── README.md ├── client.lua ├── config.cluster ├── config.lua ├── main.lua └── server.lua ├── hello-cluster ├── README.md ├── client.lua ├── config.cluster ├── config.lua ├── main.lua └── server.lua ├── hello-console ├── README.md ├── config.lua ├── main.lua ├── s1.lua ├── s2-call.lua ├── s2-hotfix.lua ├── s2.lua ├── unique-s2-call-snax.lua ├── unique-s2-call.lua └── unique-s2.lua ├── hello-gateserver ├── README.md ├── client.lua ├── config.lua ├── main.lua └── server.lua ├── hello-slave ├── README.md ├── config-master.lua ├── config-salve.lua ├── master-service.lua ├── master.lua ├── slave-service.lua └── slave.lua ├── hello-slaves ├── README.md ├── config-master.lua ├── config-salve.lua ├── master-service.lua ├── master.lua ├── slave-service.lua └── slave.lua ├── hello-socket ├── README.md ├── client.lua ├── config.lua ├── main.lua └── server.lua ├── hello-socketchannel ├── README.md ├── client.lua ├── config.lua ├── main.lua └── server.lua └── hello-world ├── README.md ├── config.lua └── hello-world.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/README.md -------------------------------------------------------------------------------- /abort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/abort.lua -------------------------------------------------------------------------------- /clearcache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/clearcache.lua -------------------------------------------------------------------------------- /hello-cluster-snax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster-snax/README.md -------------------------------------------------------------------------------- /hello-cluster-snax/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster-snax/client.lua -------------------------------------------------------------------------------- /hello-cluster-snax/config.cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster-snax/config.cluster -------------------------------------------------------------------------------- /hello-cluster-snax/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster-snax/config.lua -------------------------------------------------------------------------------- /hello-cluster-snax/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster-snax/main.lua -------------------------------------------------------------------------------- /hello-cluster-snax/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster-snax/server.lua -------------------------------------------------------------------------------- /hello-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster/README.md -------------------------------------------------------------------------------- /hello-cluster/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster/client.lua -------------------------------------------------------------------------------- /hello-cluster/config.cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster/config.cluster -------------------------------------------------------------------------------- /hello-cluster/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster/config.lua -------------------------------------------------------------------------------- /hello-cluster/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster/main.lua -------------------------------------------------------------------------------- /hello-cluster/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-cluster/server.lua -------------------------------------------------------------------------------- /hello-console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-console/README.md -------------------------------------------------------------------------------- /hello-console/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-console/config.lua -------------------------------------------------------------------------------- /hello-console/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-console/main.lua -------------------------------------------------------------------------------- /hello-console/s1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-console/s1.lua -------------------------------------------------------------------------------- /hello-console/s2-call.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-console/s2-call.lua -------------------------------------------------------------------------------- /hello-console/s2-hotfix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-console/s2-hotfix.lua -------------------------------------------------------------------------------- /hello-console/s2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-console/s2.lua -------------------------------------------------------------------------------- /hello-console/unique-s2-call-snax.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-console/unique-s2-call-snax.lua -------------------------------------------------------------------------------- /hello-console/unique-s2-call.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-console/unique-s2-call.lua -------------------------------------------------------------------------------- /hello-console/unique-s2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-console/unique-s2.lua -------------------------------------------------------------------------------- /hello-gateserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-gateserver/README.md -------------------------------------------------------------------------------- /hello-gateserver/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-gateserver/client.lua -------------------------------------------------------------------------------- /hello-gateserver/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-gateserver/config.lua -------------------------------------------------------------------------------- /hello-gateserver/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-gateserver/main.lua -------------------------------------------------------------------------------- /hello-gateserver/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-gateserver/server.lua -------------------------------------------------------------------------------- /hello-slave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slave/README.md -------------------------------------------------------------------------------- /hello-slave/config-master.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slave/config-master.lua -------------------------------------------------------------------------------- /hello-slave/config-salve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slave/config-salve.lua -------------------------------------------------------------------------------- /hello-slave/master-service.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slave/master-service.lua -------------------------------------------------------------------------------- /hello-slave/master.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slave/master.lua -------------------------------------------------------------------------------- /hello-slave/slave-service.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slave/slave-service.lua -------------------------------------------------------------------------------- /hello-slave/slave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slave/slave.lua -------------------------------------------------------------------------------- /hello-slaves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slaves/README.md -------------------------------------------------------------------------------- /hello-slaves/config-master.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slaves/config-master.lua -------------------------------------------------------------------------------- /hello-slaves/config-salve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slaves/config-salve.lua -------------------------------------------------------------------------------- /hello-slaves/master-service.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slaves/master-service.lua -------------------------------------------------------------------------------- /hello-slaves/master.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slaves/master.lua -------------------------------------------------------------------------------- /hello-slaves/slave-service.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slaves/slave-service.lua -------------------------------------------------------------------------------- /hello-slaves/slave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-slaves/slave.lua -------------------------------------------------------------------------------- /hello-socket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-socket/README.md -------------------------------------------------------------------------------- /hello-socket/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-socket/client.lua -------------------------------------------------------------------------------- /hello-socket/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-socket/config.lua -------------------------------------------------------------------------------- /hello-socket/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-socket/main.lua -------------------------------------------------------------------------------- /hello-socket/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-socket/server.lua -------------------------------------------------------------------------------- /hello-socketchannel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-socketchannel/README.md -------------------------------------------------------------------------------- /hello-socketchannel/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-socketchannel/client.lua -------------------------------------------------------------------------------- /hello-socketchannel/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-socketchannel/config.lua -------------------------------------------------------------------------------- /hello-socketchannel/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-socketchannel/main.lua -------------------------------------------------------------------------------- /hello-socketchannel/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-socketchannel/server.lua -------------------------------------------------------------------------------- /hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-world/README.md -------------------------------------------------------------------------------- /hello-world/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-world/config.lua -------------------------------------------------------------------------------- /hello-world/hello-world.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximenpo/hello-skynet/HEAD/hello-world/hello-world.lua --------------------------------------------------------------------------------