JuliaWeb / JuliaWeb/WebSockets.jl
Document how to disable TCP_NODELAY (nagle) and enable quickack
Open
- Dominant language
- Julia
- Stars
- 161
- Forks
- 57
- PR merge metrics
- No merged PRs in 30d
Description
It took a bit of digging for me to figure how to do this, and I would think that many users of websockets would want to be able to adjust the tcp socket options.
For example, for a wss connection:
```
WebSockets.open("wss://uri") do ws
Sockets.naggle(ws.socket.bio, false)
Sockets.quickack(ws.socket.bio, true)
...
end
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.