Embed presentation
Download to read offline











Erlang is a concurrent, fault-tolerant, and distributed programming language created in 1986. It uses an actor model and immutable data to allow for concurrency without race conditions. Erlang is fault-tolerant as it is designed to "let programs crash" gracefully and restart without needing to restart the entire system. It can distribute processes across multiple nodes in a network to improve reliability, scalability, and performance without single points of failure. Nodes communicate using Erlang's built-in port manager and distributed protocol without needing an interface definition language.









