[go-nuts] Japronto vs Go net/http

2017-03-08 Thread Tamás Gulácsi
Japrono is mostly written in C. It provides only HTTP/1.1, with not-too-widespread pipelining support. No HTTP/2, so not future proof. As the readme says, fasthttp is only 18% slower than japronto. And we know that fasthttp is fast because of different design goals: it sacrifices ease of use and

Re: [go-nuts] Japronto vs Go net/http

2017-03-08 Thread Wojciech S. Czarnecki
Dnia 2017-03-07, o godz. 23:34:54 Gopher napisał(a): > Hi.Does anyone know why the Japronto is faster? ["" from japronto github pitch.] Because "The server is written in hand tweaked C trying to take advantage of modern CPUs." What translates to 'it will run fast if it will'. > Is it possible t

[go-nuts] Japronto vs Go net/http

2017-03-07 Thread Gopher
Hi.Does anyone know why the Japronto is faster? Is it possible to do something about it? I noticed that the response header is larger than japronto header. Response header net/http additionally includes the current date. https://github.com/squeaky-pl/japronto -- You received this message bec