-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add param to enable ws per-message deflate (#365)
* Add param to enable ws per-message deflate Tornado has its own per-message deflate compression option, which compresses each WebSocket message. The compression level should be roughly equivalent to PNG compression, depending on whether the message is JSON or binary (CBOR). The encoding/decoding time will be much faster than protocol PNG compression. This param should be enabled when wire size is important, e.g. not connecting to localhost.
- Loading branch information
Showing
3 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters