Earlier quoted context omitted.
Go is 1-2 orders of magnitude faster than Ruby, and much easier to write concurrent code in. It makes perfect sense to me. What would you have recommended them, for a reasonably-high-performance server implementation? (Please don't say C.) https://benchmarksgame.alioth.debian.org/u64q/benchmark.php?...
Lua would beat go every day of the week.
Handling 1M Requests per Minute with Go
21–30 of 109 posts
Re: Handling 1M Requests per Minute with Go
#22Arguably, UploadToS3 should not be a method of *Payload. Suggestion: Make an S3-uploader package with _internal_ connection pooling, upload queueing and concurrency handling.
Re: Handling 1M Requests per Minute with Go
#23Are there any tutorials/templates/best practices for writing a small web service in Golang?
Re: Handling 1M Requests per Minute with Go
#24Re: Handling 1M Requests per Minute with Go
#25Re: Handling 1M Requests per Minute with Go
#26Re: Handling 1M Requests per Minute with Go
#27Go astroturfing continues ...
Re: Handling 1M Requests per Minute with Go
#28Re: Handling 1M Requests per Minute with Go
#29Earlier 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
#30Does 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…
the new garbage collector in 1.5 should improve things.