Mods, can we change "go" in the title to "golang"? That's the official name, and it makes it searchable by search engines?
Handling 1M Requests per Minute with Go
31–40 of 109 posts
Re: Handling 1M Requests per Minute with Go
#32Mods, can we change "go" in the title to "golang"? That's the official name, and it makes it searchable by search engines?
Re: Handling 1M Requests per Minute with Go
#33It's interesting this came up today. I'm looking for a new language to migrate my flask/uwsgi web service to. I'm having a terrible time making it scale. Are there any tutorials/templates/best practices for writing a small web service in Golang?
[0] https://golang.org/doc/articles/wiki/
[1] https://github.com/gin-gonic/gin
Re: Handling 1M Requests per Minute with Go
#34It's interesting this came up today. I'm looking for a new language to migrate my flask/uwsgi web service to. I'm having a terrible time making it scale. Are there any tutorials/templates/best practices for writing a small web service in Golang?
Re: Handling 1M Requests per Minute with Go
#35Re: Handling 1M Requests per Minute with Go
#36What's the trick to resubmit without getting stuck going to the first post? For example, I submitted this story 2 hours before this one: https://news.ycombinator.com/item?id=9844826 In the past, when I try to submit a story, even if it's a couple days old, the submission is ignored, and my vote is added to the original.
Re: Handling 1M Requests per Minute with Go
#37Earlier quoted context omitted.
Lua would beat go every day of the week.
As Clojure would beat Lua every second of a day.
Re: Handling 1M Requests per Minute with Go
#38It's interesting this came up today. I'm looking for a new language to migrate my flask/uwsgi web service to. I'm having a terrible time making it scale. Are there any tutorials/templates/best practices for writing a small web service in Golang?
the only reason to write something like that in Go is if you're looking to impress a recruiter at (Go). Advise: pick a better tool for your problem.
Re: Handling 1M Requests per Minute with Go
#39Does anybody here have any experience with Go's garbage collection pauses with large stack sizes? I've got a scala app that regularly consumes about 48G of ram, and I'm very happy with the response times during heavy loads like this, but the P99.5 is abysmal because of garbage collection. I've tried tuning it, but it doesn't seem like anything I do helps. I'll probably end up using an Azul JVM but I'm curious how oth…
Re: Handling 1M Requests per Minute with Go
#40Does anybody here have any experience with Go's garbage collection pauses with large stack sizes? I've got a scala app that regularly consumes about 48G of ram, and I'm very happy with the response times during heavy loads like this, but the P99.5 is abysmal because of garbage collection. I've tried tuning it, but it doesn't seem like anything I do helps. I'll probably end up using an Azul JVM but I'm curious how oth…