go-tigertonic
go-tigertonic copied to clipboard
Lock-free per-request context
WithContext and Context are unnecessarily globally synchronized. I think the solution is essentially an http.Handler that allocates an instance of another http.Handler (this is the type of the per-request context) and calls its ServeHTTP method.
Is this a performance issue when tigertonic is underload?