# zinx **Repository Path**: ouhaoqiang/zinx ## Basic Information - **Project Name**: zinx - **Description**: 根据aceld老师的zinx轻量级go语言TCP服务器框架教程进行学习的。可能我的会和原本的不一样,添加了一些自己的想法。 原教程地址: https://github.com/aceld/zinx - **Primary Language**: Go - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-09 - **Last Updated**: 2024-01-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # README `v0.1` ## 介绍 ​ 根据 [aceld (刘丹冰) (github.com)](https://github.com/aceld) 老师的 `Go 轻量级 TCP 并发服务器框架` 教程进行学习所创建的 zinx git 仓库。希望我可以完成整套课程的学习,并且进行修改。 ## 相关网站 - [aceld/zinx: A lightweight concurrent server framework based on Golang.(基于Golang轻量级TCP并发服务器框架). (github.com)](https://github.com/aceld/zinx) - [Golang轻量级并发服务器框架zinx (yuque.com)](https://www.yuque.com/aceld/npyr8s) - [01-zinx课程简介_哔哩哔哩_bilibili](https://www.bilibili.com/video/BV1wE411d7th/?p=1) ## 启动项目 - clone 项目 ```shell git clone https://gitee.com/ouhaoqiang/zinx.git ``` - 启动 server demo ```shell cd zinx/zdemo/server # 编译 ./build.sh # 运行 ./server ``` - 启动 client demo ```shell cd zinx/zdemo/client # 编译 ./build.sh # 运行 ./client ``` ## 框架使用