5 ms·
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 gorouti
by donjoe 2y 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 2y agoAnother option is to have a read-, and a write-pump goroutine associated with each gorilla ws client. I found this useful for gateways wss <--> *.