Comment on Serving 200M requests per day with a CGI-binparentComments−jacob21611yIn the post I also showed results for a little `gohttpd` program running the CGI program:https://github.com/Jacob2161/cgi-bin/blob/main/gohttpd/main....See as "Benchmarking (writes|reads) using Go net/http"It was faster but not by very much. Running CGI programs is just forking processes, so Apache's forking model works just about as well as anything else.
Comments
In the post I also showed results for a little `gohttpd` program running the CGI program:
https://github.com/Jacob2161/cgi-bin/blob/main/gohttpd/main....
See as "Benchmarking (writes|reads) using Go net/http"
It was faster but not by very much. Running CGI programs is just forking processes, so Apache's forking model works just about as well as anything else.