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
See erlang/otp#5831 for details as to why it's faster to do that. Might not be worth doing in many parts of Cowboy, but some like Websocket or the loop handlers may benefit from this.
The text was updated successfully, but these errors were encountered:
The hard part is figuring out how to measure the improvements (or lack thereof). It might not be worth outside of receiving Erlang messages (the network is likely slower).
Profiling tools are useful but the deciding factors for performance improvements in Cowboy are latency and throughput so for Websocket for example this means being able to make the clients either receive data faster than before, or receive more data than before, for specific workloads. Currently the only such measurements we have are the run times of the Autobahn test suite.
See erlang/otp#5831 for details as to why it's faster to do that. Might not be worth doing in many parts of Cowboy, but some like Websocket or the loop handlers may benefit from this.
The text was updated successfully, but these errors were encountered: