|
|
|
|
|
by michaelfairley
4849 days ago
|
|
I've run Go in production for a web application, and I'll say that Go is not a great choice for this task. The built in HTTP server doesn't have a way to shut down gracefully, there's not a good zero-downtime restart story, and the standard library SQL package (and abstractions on top of it) has some nasty warts that only show up under concurrent load. If you build a webapp in Go, be prepared to spend a lot of time monkeying around with problems that are solved issues on most other platforms. |
|