{"id":30951002,"url":"https://github.com/imgurbot12/gofaster","last_synced_at":"2025-09-11T05:28:40.781Z","repository":{"id":61623336,"uuid":"100338147","full_name":"imgurbot12/gofaster","owner":"imgurbot12","description":"A Micro-Web-Framework Designed to Support Headers","archived":false,"fork":false,"pushed_at":"2018-10-13T03:09:09.000Z","size":25,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-06-20T12:39:47.845Z","etag":null,"topics":["fast","fasthttp","gofaster","golang","headers","imgurbot12","webframework"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/imgurbot12.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-15T04:19:15.000Z","updated_at":"2024-06-20T12:39:47.846Z","dependencies_parsed_at":"2022-10-19T18:45:40.453Z","dependency_job_id":null,"html_url":"https://github.com/imgurbot12/gofaster","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/imgurbot12/gofaster","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imgurbot12%2Fgofaster","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imgurbot12%2Fgofaster/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imgurbot12%2Fgofaster/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imgurbot12%2Fgofaster/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imgurbot12","download_url":"https://codeload.github.com/imgurbot12/gofaster/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imgurbot12%2Fgofaster/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274582647,"owners_count":25311653,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fast","fasthttp","gofaster","golang","headers","imgurbot12","webframework"],"created_at":"2025-09-11T05:27:32.259Z","updated_at":"2025-09-11T05:28:40.776Z","avatar_url":"https://github.com/imgurbot12.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gofaster\nA Micro-Web-Framework Designed to Support Headers\n\nMany of the existing web-frameworks serve as an extension of net/http or utilize fasthttp and\nboth of which seem to **choke** when dealing with a lot of additional headers\n\n* **FastHttp looses x3 it's speed after adding 4 headers to every request**\n* **Net/Http looses almost x7 it's speed after adding the same headers to every request**\n\n\n### Benchmarks:\n___\n[\"Hello World!\" Web-Server Script](benchmarks/web.go)\n\n**Last Test Updated:** 2017-08-14\n\n*test environment*\n\n* CPU:      Intel(R) Core(TM) i3-5020U CPU @ 2.20GHz\n* Memory:   12G\n* Go:       1.8.3\n* OS:       Ubuntu 14.04 (Trusty Tahr)\n\nNet/Http **Without** Headers:\n```\nRunning 30s test @ http://localhost:8080\n  12 threads and 400 connections\n  Thread Stats   Avg      Stdev     Max   +/- Stdev\n    Latency    18.52ms   45.66ms 773.89ms   91.98%\n    Req/Sec     5.84k     2.89k   24.20k    77.60%\n  2096219 requests in 30.09s, 257.89MB read\nRequests/sec:  69668.78\nTransfer/sec:      8.57MB\n```\nNet/Http **With** Headers:\n```\nRunning 30s test @ http://localhost:8080\n  12 threads and 400 connections\n  Thread Stats   Avg      Stdev     Max   +/- Stdev\n    Latency    22.01ms   35.92ms 441.88ms   86.90%\n    Req/Sec     1.06k     1.11k    6.93k    81.11%\n  308726 requests in 30.10s, 50.05MB read\n  Socket errors: connect 58, read 0, write 0, timeout 0\nRequests/sec:  10257.50\nTransfer/sec:      1.66MB\n```\nFasthttp **Without** Headers:\n```\nRunning 30s test @ http://localhost:8080\n  12 threads and 400 connections\n  Thread Stats   Avg      Stdev     Max   +/- Stdev\n    Latency     2.63ms    1.93ms  59.17ms   87.01%\n    Req/Sec    13.16k     1.71k   47.80k    74.80%\n  4720619 requests in 30.08s, 661.78MB read\nRequests/sec: 156943.19\nTransfer/sec:     22.00MB\n```\nFasthttp **With** Headers:\n```\nRunning 30s test @ http://localhost:8080\n  12 threads and 400 connections\n  Thread Stats   Avg      Stdev     Max   +/- Stdev\n    Latency     3.34ms    9.90ms 401.52ms   98.55%\n    Req/Sec     3.87k     1.36k   10.45k    73.18%\n  1356347 requests in 30.09s, 219.90MB read\nRequests/sec:  45072.57\nTransfer/sec:      7.31MB\n```\nGoFaster **Without** Headers:\n```\nRunning 30s test @ http://localhost:8080\n  12 threads and 400 connections\n  Thread Stats   Avg      Stdev     Max   +/- Stdev\n    Latency     8.17ms    8.63ms 224.50ms   92.78%\n    Req/Sec     3.53k   413.15     8.45k    71.90%\n  1267217 requests in 30.10s, 93.06MB read\n  Socket errors: connect 0, read 1267015, write 0, timeout 0\nRequests/sec:  42100.76\nTransfer/sec:      3.09MB\n```\nGoFaster **With** Headers:\n```\nRunning 30s test @ http://localhost:8080\n  12 threads and 400 connections\n  Thread Stats   Avg      Stdev     Max   +/- Stdev\n    Latency     9.08ms    8.57ms 219.27ms   88.48%\n    Req/Sec     3.37k   385.27     6.11k    72.85%\n  1210974 requests in 30.10s, 196.33MB read\nRequests/sec:  40237.18\nTransfer/sec:      6.52MB\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimgurbot12%2Fgofaster","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimgurbot12%2Fgofaster","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimgurbot12%2Fgofaster/lists"}