DEV Community

Discussion on: Simple web server implemented in Perl and Go

Collapse
 
wi2l profile image
William Poussier

Comparison is unfair. You are using the whole net/http.Server layer for Go, but you are just reading and writing directly to a socket in Perl. Rewrite your Go implementation using only the net package and I am pretty sure the results won't be the same.