├── sparrow ├── sparrow_main_r ├── www ├── .res │ ├── 404.jpg │ ├── dir.png │ ├── back.ico │ ├── file.ico │ ├── home.ico │ ├── logo.png │ ├── favicon.ico │ ├── github24.ico │ ├── weibo24.ico │ └── dir.css ├── index.html └── 404.html ├── performance_test ├── 性能测试1.PNG ├── nginx_ab.png ├── sparrow_ab.png ├── nginx_ab_online.jpg ├── nginx_webbench.png ├── sparrow_ab_online.jpg ├── sparrow_webbench.png └── nginx_sparrow_webb.jpg ├── exist.sh ├── dir.part2 ├── config ├── test.conf └── sparrow.conf ├── livechat.sql ├── thread_manage.h ├── .gitignore ├── url.h ├── tool.sh ├── file.h ├── dir.part1 ├── task.sql ├── sparrow.h ├── global.h ├── min_heap.h ├── Makefile ├── config.h ├── Makefile_release ├── thread_manage.c ├── util.h ├── async_log.h ├── url.c ├── ev_loop.h ├── picohttpparser.h ├── config.c ├── file.c ├── README.md ├── cJSON.h ├── mime.h ├── min_heap.c ├── ev_loop.c ├── async_log.c ├── picohttpparser.c ├── sparrow.c └── cJSON.c /sparrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/sparrow -------------------------------------------------------------------------------- /sparrow_main_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/sparrow_main_r -------------------------------------------------------------------------------- /www/.res/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/www/.res/404.jpg -------------------------------------------------------------------------------- /www/.res/dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/www/.res/dir.png -------------------------------------------------------------------------------- /www/.res/back.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/www/.res/back.ico -------------------------------------------------------------------------------- /www/.res/file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/www/.res/file.ico -------------------------------------------------------------------------------- /www/.res/home.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/www/.res/home.ico -------------------------------------------------------------------------------- /www/.res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/www/.res/logo.png -------------------------------------------------------------------------------- /www/.res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/www/.res/favicon.ico -------------------------------------------------------------------------------- /www/.res/github24.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/www/.res/github24.ico -------------------------------------------------------------------------------- /www/.res/weibo24.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/www/.res/weibo24.ico -------------------------------------------------------------------------------- /performance_test/性能测试1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/performance_test/性能测试1.PNG -------------------------------------------------------------------------------- /performance_test/nginx_ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/performance_test/nginx_ab.png -------------------------------------------------------------------------------- /performance_test/sparrow_ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/performance_test/sparrow_ab.png -------------------------------------------------------------------------------- /performance_test/nginx_ab_online.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/performance_test/nginx_ab_online.jpg -------------------------------------------------------------------------------- /performance_test/nginx_webbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/performance_test/nginx_webbench.png -------------------------------------------------------------------------------- /performance_test/sparrow_ab_online.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/performance_test/sparrow_ab_online.jpg -------------------------------------------------------------------------------- /performance_test/sparrow_webbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/performance_test/sparrow_webbench.png -------------------------------------------------------------------------------- /performance_test/nginx_sparrow_webb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codercheng/sparrow/master/performance_test/nginx_sparrow_webb.jpg -------------------------------------------------------------------------------- /exist.sh: -------------------------------------------------------------------------------- 1 | while true 2 | do 3 | pidof ./sparrow_main_d || ./sparrow_main_d & 4 | pidof ./sparrow || ./sparrow & 5 | sleep 300 6 | done 7 | -------------------------------------------------------------------------------- /dir.part2: -------------------------------------------------------------------------------- 1 | 2 |
5 |