|
You are here |
pauladamsmith.com | ||
| | | | |
matttproud.com
|
|
| | | | | Pop quiz, hot shot: what is the behavior of func f (as defined below) when it is called from a bare gRPC method or HTTP handler as go f(ctx) using the context.Context provided to the handler?1 1 2 3 4 5 6 7 8 9 10 11 func f(ctx context.Context) { // Flimsily make it improbable for this function to continue while the // handler is serving. time.Sleep(time.Second) select { case <-time. | |
| | | | |
www.neerajsidhaye.com
|
|
| | | | | GO middleware as the name suggests, sits between Go webserver( to be precise "router") and application handler and it works like a filters, similar to what we have in J2EE application for pre and/or post processing of request. Let's hands on with Go Middleware... | |
| | | | |
peter.bourgon.org
|
|
| | | | | Peter Bourgon has a web site, and this is that web site. | |
| | | | |
ewintr.nl
|
|
| | | [AI summary] A guide on how to use Golang's built-in httptest library to create a mock server and record outbound HTTP requests for unit testing Go applications without external dependencies. | ||