JuliaWeb / JuliaWeb/WebSockets.jl

Document how to disable TCP_NODELAY (nagle) and enable quickack

Open
#159 6 comments 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.