You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WebSocket frame encoding: avoid redundant allocations on frame masking (#12969)
Motivation:
When masking is enabled, redundant intermediate bytebuffer + array is created for each websocket message.
Modifications:
Remove intermediate bytebuffer used to hold frame mask, use int mask directly.
Result:
No redundant allocations on frame masking
0 commit comments