top | item 42219383 (no title) windlep | 1 year ago I was under the impression that the underlying net/http library uses a new goroutine for every connection, so each websocket gets its own goroutine. Or is there somewhere else you were expecting goroutines in addition to the one per connection? discuss order hn newest donjoe|1 year ago Which is perfectly fine. However, you will be able to process only a single message per connection at once.What you would do in go is:- either a new goroutine per message- or installing a worker pool with a predefined goroutine size accepting messages for processing jand|1 year ago Another option is to have a read-, and a write-pump goroutine associated with each gorilla ws client. I found this useful for gateways wss <--> *.
donjoe|1 year ago Which is perfectly fine. However, you will be able to process only a single message per connection at once.What you would do in go is:- either a new goroutine per message- or installing a worker pool with a predefined goroutine size accepting messages for processing jand|1 year ago Another option is to have a read-, and a write-pump goroutine associated with each gorilla ws client. I found this useful for gateways wss <--> *.
jand|1 year ago Another option is to have a read-, and a write-pump goroutine associated with each gorilla ws client. I found this useful for gateways wss <--> *.
donjoe|1 year ago
What you would do in go is:
- either a new goroutine per message
- or installing a worker pool with a predefined goroutine size accepting messages for processing
jand|1 year ago