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
The Erlang concurrency model is shared-nothing, meaning that all data must be copied
between processes and this introduces some overhead. Overhead may be minimised by using binaries instead of lists, because binaries are passed by reference.
The text was updated successfully, but these errors were encountered:
The Erlang concurrency model is shared-nothing, meaning that all data must be copied
between processes and this introduces some overhead. Overhead may be minimised by using binaries instead of lists, because binaries are passed by reference.
The text was updated successfully, but these errors were encountered: