# webserver **Repository Path**: zqzzhou/webserver ## Basic Information - **Project Name**: webserver - **Description**: 牛客网的c++高薪项目实战,只实现了get请求的轻量级web服务器 - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-04-15 - **Last Updated**: 2022-06-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: Web, Cpp ## README #web服务器项目 #编译命令 g++ src/*.cpp -pthread -I include/ #执行命令 格式:./a.out 端口号 如 ./a.out 10000 #测试网址 http://xxx.xxx.xxx.xxx:10000/index.html #webbench服务器压力测试 #编译命令 cd test_presure/webbench-1.5 make #执行命令 格式:./webbench -c 客户端数量 -t 测试时间/秒 服务器地址 如 /webbench -c 8000 -t 5 http://xxx.xxx.xxx.xxx:10000 或 /webbench -c 8000 -t 5 http://xxx.xxx.xxx.xxx:10000/index.html