fbpx
Wikipedia

Erlang (programming language)

Erlang (/ˈɜːrlæŋ/ UR-lang) is a general-purpose, concurrent, functional high-level programming language, and a garbage-collected runtime system. The term Erlang is used interchangeably with Erlang/OTP, or Open Telecom Platform (OTP), which consists of the Erlang runtime system, several ready-to-use components (OTP) mainly written in Erlang, and a set of design principles for Erlang programs.[5]

Erlang
ParadigmsMulti-paradigm: concurrent, functional, object oriented
Designed by
DeveloperEricsson
First appeared1986; 38 years ago (1986)
Stable release
26.2.4[1]  / 12 April 2024; 19 days ago (12 April 2024)
Typing disciplineDynamic, strong
LicenseApache License 2.0
Filename extensions.erl, .hrl
Websitewww.erlang.org
Major implementations
Erlang
Influenced by
Lisp, PLEX,[2] Prolog, Smalltalk
Influenced
Akka, Clojure,[3] Dart, Elixir, F#, Opa, Oz, Reia, Rust,[4] Scala, Go
  • Erlang Programming at Wikibooks

The Erlang runtime system is designed for systems with these traits:

The Erlang programming language has immutable data, pattern matching, and functional programming.[7] The sequential subset of the Erlang language supports eager evaluation, single assignment, and dynamic typing.

A normal Erlang application is built out of hundreds of small Erlang processes.

It was originally proprietary software within Ericsson, developed by Joe Armstrong, Robert Virding, and Mike Williams in 1986,[8] but was released as free and open-source software in 1998.[9][10] Erlang/OTP is supported and maintained by the Open Telecom Platform (OTP) product unit at Ericsson.

History edit

The name Erlang, attributed to Bjarne Däcker, has been presumed by those working on the telephony switches (for whom the language was designed) to be a reference to Danish mathematician and engineer Agner Krarup Erlang and a syllabic abbreviation of "Ericsson Language".[8][11][12] Erlang was designed with the aim of improving the development of telephony applications.[13] The initial version of Erlang was implemented in Prolog and was influenced by the programming language PLEX used in earlier Ericsson exchanges. By 1988 Erlang had proven that it was suitable for prototyping telephone exchanges, but the Prolog interpreter was far too slow. One group within Ericsson estimated that it would need to be 40 times faster to be suitable for production use. In 1992, work began on the BEAM virtual machine (VM) which compiles Erlang to C using a mix of natively compiled code and threaded code to strike a balance between performance and disk space.[14] According to co-inventor Joe Armstrong, the language went from lab product to real applications following the collapse of the next-generation AXE telephone exchange named AXE-N in 1995. As a result, Erlang was chosen for the next Asynchronous Transfer Mode (ATM) exchange AXD.[8]

 
Robert Virding and Joe Armstrong, 2013
 
Mike Williams

In February 1998, Ericsson Radio Systems banned the in-house use of Erlang for new products, citing a preference for non-proprietary languages.[15] The ban caused Armstrong and others to make plans to leave Ericsson.[16] In March 1998 Ericsson announced the AXD301 switch,[8] containing over a million lines of Erlang and reported to achieve a high availability of nine "9"s.[17] In December 1998, the implementation of Erlang was open-sourced and most of the Erlang team resigned to form a new company Bluetail AB.[8] Ericsson eventually relaxed the ban and re-hired Armstrong in 2004.[16]

In 2006, native symmetric multiprocessing support was added to the runtime system and VM.[8]

Processes edit

Erlang applications are built of very lightweight Erlang processes in the Erlang runtime system. Erlang processes can be seen as "living" objects (object-oriented programming), with data encapsulation and message passing, but capable of changing behavior during runtime. The Erlang runtime system provides strict process isolation between Erlang processes (this includes data and garbage collection, separated individually by each Erlang process) and transparent communication between processes (see Location transparency) on different Erlang nodes (on different hosts).

Joe Armstrong, co-inventor of Erlang, summarized the principles of processes in his PhD thesis:[18]

  • Everything is a process.
  • Processes are strongly isolated.
  • Process creation and destruction is a lightweight operation.
  • Message passing is the only way for processes to interact.
  • Processes have unique names.
  • If you know the name of a process you can send it a message.
  • Processes share no resources.
  • Error handling is non-local.
  • Processes do what they are supposed to do or fail.

Joe Armstrong remarked in an interview with Rackspace in 2013: "If Java is 'write once, run anywhere', then Erlang is 'write once, run forever'."[19]

Usage edit

In 2014, Ericsson reported Erlang was being used in its support nodes, and in GPRS, 3G and LTE mobile networks worldwide and also by Nortel and T-Mobile.[20]

Erlang is used in RabbitMQ. As Tim Bray, director of Web Technologies at Sun Microsystems, expressed in his keynote at O'Reilly Open Source Convention (OSCON) in July 2008:

If somebody came to me and wanted to pay me a lot of money to build a large scale message handling system that really had to be up all the time, could never afford to go down for years at a time, I would unhesitatingly choose Erlang to build it in.

Erlang is the programming language used to code WhatsApp.[21]

It is also the language of choice for Ejabberd – an XMPP messaging server.

Elixir is a programming language that compiles into BEAM byte code (via Erlang Abstract Format).[22]

Since being released as open source, Erlang has been spreading beyond telecoms, establishing itself in other vertical markets such as FinTech, gaming, healthcare, automotive, internet of things and blockchain. Apart from WhatsApp, there are other companies listed as Erlang's success stories: Vocalink (a MasterCard company), Goldman Sachs, Nintendo, AdRoll, Grindr, BT Mobile, Samsung, OpenX, and SITA.[23][24]

Functional programming examples edit

Factorial edit

A factorial algorithm implemented in Erlang:

-module(fact). % This is the file 'fact.erl', the module and the filename must match -export([fac/1]). % This exports the function 'fac' of arity 1 (1 parameter, no type, no name) fac(0) -> 1; % If 0, then return 1, otherwise (note the semicolon ; meaning 'else') fac(N) when N > 0, is_integer(N) -> N * fac(N-1). % Recursively determine, then return the result % (note the period . meaning 'endif' or 'function end') %% This function will crash if anything other than a nonnegative integer is given. %% It illustrates the "Let it crash" philosophy of Erlang. 

Fibonacci sequence edit

A tail recursive algorithm that produces the Fibonacci sequence:

%% The module declaration must match the file name "series.erl"  -module(series). %% The export statement contains a list of all those functions that form %% the module's public API. In this case, this module exposes a single %% function called fib that takes 1 argument (I.E. has an arity of 1) %% The general syntax for -export is a list containing the name and %% arity of each public function -export([fib/1]). %% --------------------------------------------------------------------- %% Public API %% --------------------------------------------------------------------- %% Handle cases in which fib/1 receives specific values %% The order in which these function signatures are declared is a vital %% part of this module's functionality %% If fib/1 is passed precisely the integer 0, then return 0 fib(0) -> 0; %% If fib/1 receives a negative number, then return the atom err_neg_val %% Normally, such defensive coding is discouraged due to Erlang's 'Let %% it Crash' philosophy; however, in this case we should explicitly %% prevent a situation that will crash Erlang's runtime engine fib(N) when N < 0 -> err_neg_val; %% If fib/1 is passed an integer less than 3, then return 1 %% The preceding two function signatures handle all cases where N < 1, %% so this function signature handles cases where N = 1 or N = 2 fib(N) when N < 3 -> 1; %% For all other values, call the private function fib_int/3 to perform %% the calculation fib(N) -> fib_int(N, 0, 1). %% --------------------------------------------------------------------- %% Private API %% --------------------------------------------------------------------- %% If fib_int/3 receives a 1 as its first argument, then we're done, so %% return the value in argument B. Since we are not interested in the %% value of the second argument, we denote this using _ to indicate a %% "don't care" value fib_int(1, _, B) -> B; %% For all other argument combinations, recursively call fib_int/3 %% where each call does the following: %% - decrement counter N %% - Take the previous fibonacci value in argument B and pass it as %% argument A %% - Calculate the value of the current fibonacci number and pass it %% as argument B fib_int(N, A, B) -> fib_int(N-1, B, A+B). 

Here is the same program without the explanatory comments:

-module(series). -export([fib/1]). fib(0) -> 0; fib(N) when N < 0 -> err_neg_val; fib(N) when N < 3 -> 1; fib(N) -> fib_int(N, 0, 1). fib_int(1, _, B) -> B; fib_int(N, A, B) -> fib_int(N-1, B, A+B). 

Quicksort edit

Quicksort in Erlang, using list comprehension:[25]

%% qsort:qsort(List) %% Sort a list of items -module(qsort). % This is the file 'qsort.erl' -export([qsort/1]). % A function 'qsort' with 1 parameter is exported (no type, no name) qsort([]) -> []; % If the list [] is empty, return an empty list (nothing to sort) qsort([Pivot|Rest]) ->  % Compose recursively a list with 'Front' for all elements that should be before 'Pivot'  % then 'Pivot' then 'Back' for all elements that should be after 'Pivot'  qsort([Front || Front <- Rest, Front < Pivot]) ++   [Pivot] ++  qsort([Back || Back <- Rest, Back >= Pivot]). 

The above example recursively invokes the function qsort until nothing remains to be sorted. The expression [Front || Front <- Rest, Front < Pivot] is a list comprehension, meaning "Construct a list of elements Front such that Front is a member of Rest, and Front is less than Pivot." ++ is the list concatenation operator.

A comparison function can be used for more complicated structures for the sake of readability.

The following code would sort lists according to length:

% This is file 'listsort.erl' (the compiler is made this way) -module(listsort). % Export 'by_length' with 1 parameter (don't care about the type and name) -export([by_length/1]). by_length(Lists) -> % Use 'qsort/2' and provides an anonymous function as a parameter  qsort(Lists, fun(A,B) -> length(A) < length(B) end). qsort([], _)-> []; % If list is empty, return an empty list (ignore the second parameter) qsort([Pivot|Rest], Smaller) ->  % Partition list with 'Smaller' elements in front of 'Pivot' and not-'Smaller' elements  % after 'Pivot' and sort the sublists.  qsort([X || X <- Rest, Smaller(X,Pivot)], Smaller)  ++ [Pivot] ++  qsort([Y || Y <- Rest, not(Smaller(Y, Pivot))], Smaller). 

A Pivot is taken from the first parameter given to qsort() and the rest of Lists is named Rest. Note that the expression

[X || X <- Rest, Smaller(X,Pivot)] 

is no different in form from

[Front || Front <- Rest, Front < Pivot] 

(in the previous example) except for the use of a comparison function in the last part, saying "Construct a list of elements X such that X is a member of Rest, and Smaller is true", with Smaller being defined earlier as

fun(A,B) -> length(A) < length(B) end 

The anonymous function is named Smaller in the parameter list of the second definition of qsort so that it can be referenced by that name within that function. It is not named in the first definition of qsort, which deals with the base case of an empty list and thus has no need of this function, let alone a name for it.

Data types edit

Erlang has eight primitive data types:

Integers
Integers are written as sequences of decimal digits, for example, 12, 12375 and -23427 are integers. Integer arithmetic is exact and only limited by available memory on the machine. (This is called arbitrary-precision arithmetic.)
Atoms
Atoms are used within a program to denote distinguished values. They are written as strings of consecutive alphanumeric characters, the first character being lowercase. Atoms can contain any character if they are enclosed within single quotes and an escape convention exists which allows any character to be used within an atom. Atoms are never garbage collected and should be used with caution, especially if using dynamic atom generation.
Floats
Floating point numbers use the IEEE 754 64-bit representation.
References
References are globally unique symbols whose only property is that they can be compared for equality. They are created by evaluating the Erlang primitive make_ref().
Binaries
A binary is a sequence of bytes. Binaries provide a space-efficient way of storing binary data. Erlang primitives exist for composing and decomposing binaries and for efficient input/output of binaries.
Pids
Pid is short for process identifier – a Pid is created by the Erlang primitive spawn(...) Pids are references to Erlang processes.
Ports
Ports are used to communicate with the external world. Ports are created with the built-in function open_port. Messages can be sent to and received from ports, but these messages must obey the so-called "port protocol."
Funs
Funs are function closures. Funs are created by expressions of the form: fun(...) -> ... end.

And three compound data types:

Tuples
Tuples are containers for a fixed number of Erlang data types. The syntax {D1,D2,...,Dn} denotes a tuple whose arguments are D1, D2, ... Dn. The arguments can be primitive data types or compound data types. Any element of a tuple can be accessed in constant time.
Lists
Lists are containers for a variable number of Erlang data types. The syntax [Dh|Dt] denotes a list whose first element is Dh, and whose remaining elements are the list Dt. The syntax [] denotes an empty list. The syntax [D1,D2,..,Dn] is short for [D1|[D2|..|[Dn|[]]]]. The first element of a list can be accessed in constant time. The first element of a list is called the head of the list. The remainder of a list when its head has been removed is called the tail of the list.
Maps
Maps contain a variable number of key-value associations. The syntax is#{Key1=>Value1,...,KeyN=>ValueN}.

Two forms of syntactic sugar are provided:

Strings
Strings are written as doubly quoted lists of characters. This is syntactic sugar for a list of the integer Unicode code points for the characters in the string. Thus, for example, the string "cat" is shorthand for [99,97,116].[26]
Records
Records provide a convenient way for associating a tag with each of the elements in a tuple. This allows one to refer to an element of a tuple by name and not by position. A pre-compiler takes the record definition and replaces it with the appropriate tuple reference.

Erlang has no method to define classes, although there are external libraries available.[27]

"Let it crash" coding style edit

Erlang is designed with a mechanism that makes it easy for external processes to monitor for crashes (or hardware failures), rather than an in-process mechanism like exception handling used in many other programming languages. Crashes are reported like other messages, which is the only way processes can communicate with each other,[28] and subprocesses can be spawned cheaply (see below). The "let it crash" philosophy prefers that a process be completely restarted rather than trying to recover from a serious failure.[29] Though it still requires handling of errors, this philosophy results in less code devoted to defensive programming where error-handling code is highly contextual and specific.[28]

Supervisor trees edit

A typical Erlang application is written in the form of a supervisor tree. This architecture is based on a hierarchy of processes in which the top level process is known as a "supervisor". The supervisor then spawns multiple child processes that act either as workers or more, lower level supervisors. Such hierarchies can exist to arbitrary depths and have proven to provide a highly scalable and fault-tolerant environment within which application functionality can be implemented.

Within a supervisor tree, all supervisor processes are responsible for managing the lifecycle of their child processes, and this includes handling situations in which those child processes crash. Any process can become a supervisor by first spawning a child process, then calling erlang:monitor/2 on that process. If the monitored process then crashes, the supervisor will receive a message containing a tuple whose first member is the atom 'DOWN'. The supervisor is responsible firstly for listening for such messages and secondly, for taking the appropriate action to correct the error condition.

Concurrency and distribution orientation edit

Erlang's main strength is support for concurrency. It has a small but powerful set of primitives to create processes and communicate among them. Erlang is conceptually similar to the language occam, though it recasts the ideas of communicating sequential processes (CSP) in a functional framework and uses asynchronous message passing.[30] Processes are the primary means to structure an Erlang application. They are neither operating system processes nor threads, but lightweight processes that are scheduled by BEAM. Like operating system processes (but unlike operating system threads), they share no state with each other. The estimated minimal overhead for each is 300 words.[31] Thus, many processes can be created without degrading performance. In 2005, a benchmark with 20 million processes was successfully performed with 64-bit Erlang on a machine with 16 GB random-access memory (RAM; total 800 bytes/process).[32] Erlang has supported symmetric multiprocessing since release R11B of May 2006.

While threads need external library support in most languages, Erlang provides language-level features to create and manage processes with the goal of simplifying concurrent programming. Though all concurrency is explicit in Erlang, processes communicate using message passing instead of shared variables, which removes the need for explicit locks (a locking scheme is still used internally by the VM).[33]

Inter-process communication works via a shared-nothing asynchronous message passing system: every process has a "mailbox", a queue of messages that have been sent by other processes and not yet consumed. A process uses the receive primitive to retrieve messages that match desired patterns. A message-handling routine tests messages in turn against each pattern, until one of them matches. When the message is consumed and removed from the mailbox the process resumes execution. A message may comprise any Erlang structure, including primitives (integers, floats, characters, atoms), tuples, lists, and functions.

The code example below shows the built-in support for distributed processes:

 % Create a process and invoke the function web:start_server(Port, MaxConnections)  ServerProcess = spawn(web, start_server, [Port, MaxConnections]),  % Create a remote process and invoke the function  % web:start_server(Port, MaxConnections) on machine RemoteNode  RemoteProcess = spawn(RemoteNode, web, start_server, [Port, MaxConnections]),  % Send a message to ServerProcess (asynchronously). The message consists of a tuple  % with the atom "pause" and the number "10".  ServerProcess ! {pause, 10},  % Receive messages sent to this process  receive  a_message -> do_something;  {data, DataContent} -> handle(DataContent);  {hello, Text} -> io:format("Got hello message: ~s", [Text]);  {goodbye, Text} -> io:format("Got goodbye message: ~s", [Text])  end. 

As the example shows, processes may be created on remote nodes, and communication with them is transparent in the sense that communication with remote processes works exactly as communication with local processes.

Concurrency supports the primary method of error-handling in Erlang. When a process crashes, it neatly exits and sends a message to the controlling process which can then take action, such as starting a new process that takes over the old process's task.[34][35]

Implementation edit

The official reference implementation of Erlang uses BEAM.[36] BEAM is included in the official distribution of Erlang, called Erlang/OTP. BEAM executes bytecode which is converted to threaded code at load time. It also includes a native code compiler on most platforms, developed by the High Performance Erlang Project (HiPE) at Uppsala University. Since October 2001 the HiPE system is fully integrated in Ericsson's Open Source Erlang/OTP system.[37] It also supports interpreting, directly from source code via abstract syntax tree, via script as of R11B-5 release of Erlang.

Hot code loading and modules edit

Erlang supports language-level Dynamic Software Updating. To implement this, code is loaded and managed as "module" units; the module is a compilation unit. The system can keep two versions of a module in memory at the same time, and processes can concurrently run code from each. The versions are referred to as the "new" and the "old" version. A process will not move into the new version until it makes an external call to its module.

An example of the mechanism of hot code loading:

 %% A process whose only job is to keep a counter.  %% First version  -module(counter).  -export([start/0, codeswitch/1]).  start() -> loop(0).  loop(Sum) ->  receive  {increment, Count} ->  loop(Sum+Count);  {counter, Pid} ->  Pid ! {counter, Sum},  loop(Sum);  code_switch ->  ?MODULE:codeswitch(Sum)  % Force the use of 'codeswitch/1' from the latest MODULE version  end.  codeswitch(Sum) -> loop(Sum). 

For the second version, we add the possibility to reset the count to zero.

 %% Second version  -module(counter).  -export([start/0, codeswitch/1]).  start() -> loop(0).  loop(Sum) ->  receive  {increment, Count} ->  loop(Sum+Count);  reset ->  loop(0);  {counter, Pid} ->  Pid ! {counter, Sum},  loop(Sum);  code_switch ->  ?MODULE:codeswitch(Sum)  end.  codeswitch(Sum) -> loop(Sum). 

Only when receiving a message consisting of the atom code_switch will the loop execute an external call to codeswitch/1 (?MODULE is a preprocessor macro for the current module). If there is a new version of the counter module in memory, then its codeswitch/1 function will be called. The practice of having a specific entry-point into a new version allows the programmer to transform state to what is needed in the newer version. In the example, the state is kept as an integer.

In practice, systems are built up using design principles from the Open Telecom Platform, which leads to more code upgradable designs. Successful hot code loading is exacting. Code must be written with care to make use of Erlang's facilities.

Distribution edit

In 1998, Ericsson released Erlang as free and open-source software to ensure its independence from a single vendor and to increase awareness of the language. Erlang, together with libraries and the real-time distributed database Mnesia, forms the OTP collection of libraries. Ericsson and a few other companies support Erlang commercially.

Since the open source release, Erlang has been used by several firms worldwide, including Nortel and T-Mobile.[38] Although Erlang was designed to fill a niche and has remained an obscure language for most of its existence, its popularity is growing due to demand for concurrent services.[39][40] Erlang has found some use in fielding massively multiplayer online role-playing game (MMORPG) servers.[41]

See also edit

References edit

  1. ^ "Release 26.2.4". 12 April 2024. Retrieved 19 April 2024.
  2. ^ Conferences, N. D. C. (4 June 2014). "Joe Armstrong - Functional Programming the Long Road to Enlightenment: a Historical and Personal Narrative". Vimeo.
  3. ^ "Clojure: Lisp meets Java, with a side of Erlang - O'Reilly Radar". radar.oreilly.com.
  4. ^ "Influences - The Rust Reference". The Rust Reference. Retrieved 18 April 2023.
  5. ^ "Erlang – Introduction". erlang.org.
  6. ^ Armstrong, Joe; Däcker, Bjarne; Lindgren, Thomas; Millroth, Håkan. . Archived from the original on 25 October 2011. Retrieved 31 July 2011.
  7. ^ Hitchhiker’s Tour of the BEAM – Robert Virding http://www.erlang-factory.com/upload/presentations/708/HitchhikersTouroftheBEAM.pdf
  8. ^ a b c d e f Armstrong, Joe (2007). History of Erlang. HOPL III: Proceedings of the third ACM SIGPLAN conference on History of programming languages. ISBN 978-1-59593-766-7.
  9. ^ . 8 January 2016. Archived from the original on 22 February 2019. Retrieved 5 September 2016.
  10. ^ . Archived from the original on 9 October 1999.
  11. ^ "Erlang, the mathematician?". February 1999.
  12. ^ "Free Online Dictionary of Computing: Erlang".
  13. ^ "History of Erlang". Erlang.org.
  14. ^ Armstrong, Joe (August 1997). "The development of Erlang". Proceedings of the second ACM SIGPLAN international conference on Functional programming. Vol. 32. pp. 196–203. doi:10.1145/258948.258967. ISBN 0897919181. S2CID 6821037. {{cite book}}: |journal= ignored (help)
  15. ^ Däcker, Bjarne (October 2000). Concurrent Functional Programming for Telecommunications: A Case Study of Technology Introduction (PDF) (Thesis). Royal Institute of Technology. p. 37.
  16. ^ a b "question about Erlang's future". 6 July 2010.
  17. ^ "Concurrency Oriented Programming in Erlang" (PDF). 9 November 2002.
  18. ^ Armstrong, Joe (20 November 2003). Making reliable distributed systems in the presence of software errors (DTech thesis). Stockholm, Sweden: The Royal Institute of Technology.
  19. ^ McGreggor, Duncan (26 March 2013). Rackspace takes a look at the Erlang programming language for distributed computing (Video). Rackspace Studios, SFO. Archived from the original on 11 December 2021. Retrieved 24 April 2019.
  20. ^ "Ericsson". Ericsson.com. 4 December 2014. Retrieved 7 April 2018.
  21. ^ "Inside Erlang, The Rare Programming Language Behind WhatsApp's Success". fastcompany.com. 21 February 2014. Retrieved 12 November 2019.
  22. ^ "Erlang/Elixir Syntax: A Crash Course". elixir-lang.github.com. Retrieved 10 October 2022.
  23. ^ "Which companies are using Erlang, and why? #MyTopdogStatus". erlang-solutions.com. 11 September 2019. Retrieved 15 March 2020.
  24. ^ "Which new companies are using Erlang and Elixir? #MyTopdogStatus". erlang-solutions.com. 2 March 2020. Retrieved 24 June 2020.
  25. ^ "Erlang – List Comprehensions". erlang.org.
  26. ^ "String and Character Literals". Retrieved 2 May 2015.
  27. ^ "ect – Erlang Class Transformation – add object-oriented programming to Erlang – Google Project Hosting". Retrieved 2 May 2015.
  28. ^ a b Verraes, Mathias (9 December 2014). "Let It Crash". Mathias Verraes' Blog. Retrieved 10 February 2021.
  29. ^ "Reactive Design Patterns —". www.reactivedesignpatterns.com. Retrieved 10 February 2021.
  30. ^ Armstrong, Joe (September 2010). "Erlang". Communications of the ACM. 53 (9): 68–75. doi:10.1145/1810891.1810910. Erlang is conceptually similar to the occam programming language, though it recasts the ideas of CSP in a functional framework and uses asynchronous message passing.
  31. ^ . Archived from the original on 27 February 2015.
  32. ^ Wiger, Ulf (14 November 2005). "Stress-testing erlang". comp.lang.functional.misc. Retrieved 25 August 2006.
  33. ^ . Archived from the original on 24 December 2013. Retrieved 23 December 2013.
  34. ^ Armstrong, Joe. . Archived from the original on 23 April 2015. Retrieved 15 July 2010.
  35. ^ . Archived from the original on 6 February 2015. Retrieved 15 July 2010.
  36. ^ "Erlang – Compilation and Code Loading". erlang.org. Retrieved 21 December 2017.
  37. ^ "High Performance Erlang". Retrieved 26 March 2011.
  38. ^ "Who uses Erlang for product development?". Frequently asked questions about Erlang. Retrieved 16 July 2007. The largest user of Erlang is (surprise!) Ericsson. Ericsson use it to write software used in telecommunications systems. Many dozens of projects have used it, a particularly large one is the extremely scalable AXD301 ATM switch. Other commercial users listed as part of the FAQ include: Nortel, Deutsche Flugsicherung (the German national air traffic control organisation), and T-Mobile.
  39. ^ "Programming Erlang". Retrieved 13 December 2008. Virtually all language use shared state concurrency. This is very difficult and leads to terrible problems when you handle failure and scale up the system...Some pretty fast-moving startups in the financial world have latched onto Erlang; for example, the Swedish www.kreditor.se.
  40. ^ . Archived from the original on 11 October 2007. Retrieved 8 October 2008. I do not believe that other languages can catch up with Erlang anytime soon. It will be easy for them to add language features to be like Erlang. It will take a long time for them to build such a high-quality VM and the mature libraries for concurrency and reliability. So, Erlang is poised for success. If you want to build a multicore application in the next few years, you should look at Erlang.
  41. ^ Clarke, Gavin (5 February 2011). "Battlestar Galactica vets needed for online roleplay". Music and Media. The Reg. Retrieved 8 February 2011.

Further reading edit

  • Armstrong, Joe (2003). (PDF) (PhD). The Royal Institute of Technology, Stockholm, Sweden. Archived from the original (PDF) on 23 March 2015. Retrieved 13 February 2016.
  • Armstrong, Joe (2007). "A history of Erlang". Proceedings of the third ACM SIGPLAN conference on History of programming languages – HOPL III. pp. 6–1. doi:10.1145/1238844.1238850. ISBN 978-1-59593-766-7. S2CID 555765.
  • Early history of Erlang 29 August 2019 at the Wayback Machine by Bjarne Däcker
  • Mattsson, H.; Nilsson, H.; Wikstrom, C. (1999). "Mnesia – A distributed robust DBMS for telecommunications applications". First International Workshop on Practical Aspects of Declarative Languages (PADL '99): 152–163.
  • Armstrong, Joe; Virding, Robert; Williams, Mike; Wikstrom, Claes (16 January 1996). (2nd ed.). Prentice Hall. p. 358. ISBN 978-0-13-508301-7. Archived from the original on 6 March 2012.
  • Armstrong, Joe (11 July 2007). Programming Erlang: Software for a Concurrent World (1st ed.). Pragmatic Bookshelf. p. 536. ISBN 978-1-934356-00-5.
  • Thompson, Simon J.; Cesarini, Francesco (19 June 2009). Erlang Programming: A Concurrent Approach to Software Development (1st ed.). Sebastopol, California: O'Reilly Media, Inc. p. 496. ISBN 978-0-596-51818-9.
  • Logan, Martin; Merritt, Eric; Carlsson, Richard (28 May 2010). Erlang and OTP in Action (1st ed.). Greenwich, CT: Manning Publications. p. 500. ISBN 978-1-933988-78-8.
  • Martin, Brown (10 May 2011). "Introduction to programming in Erlang, Part 1: The basics". developerWorks. IBM. Retrieved 10 May 2011.
  • Martin, Brown (17 May 2011). "Introduction to programming in Erlang, Part 2: Use advanced features and functionality". developerWorks. IBM. Retrieved 17 May 2011.
  • Wiger, Ulf (30 March 2001). (PDF). FEmSYS 2001 Deployment on distributed architectures. Ericsson Telecom AB. Archived from the original (PDF) on 19 August 2019. Retrieved 16 September 2014.

External links edit

  • Official website  

erlang, programming, language, erlang, ɜːr, lang, general, purpose, concurrent, functional, high, level, programming, language, garbage, collected, runtime, system, term, erlang, used, interchangeably, with, erlang, open, telecom, platform, which, consists, er. Erlang ˈ ɜːr l ae ŋ UR lang is a general purpose concurrent functional high level programming language and a garbage collected runtime system The term Erlang is used interchangeably with Erlang OTP or Open Telecom Platform OTP which consists of the Erlang runtime system several ready to use components OTP mainly written in Erlang and a set of design principles for Erlang programs 5 ErlangParadigmsMulti paradigm concurrent functional object orientedDesigned byJoe ArmstrongRobert VirdingMike WilliamsDeveloperEricssonFirst appeared1986 38 years ago 1986 Stable release26 2 4 1 12 April 2024 19 days ago 12 April 2024 Typing disciplineDynamic strongLicenseApache License 2 0Filename extensions erl hrlWebsitewww wbr erlang wbr orgMajor implementationsErlangInfluenced byLisp PLEX 2 Prolog SmalltalkInfluencedAkka Clojure 3 Dart Elixir F Opa Oz Reia Rust 4 Scala GoErlang Programming at Wikibooks The Erlang runtime system is designed for systems with these traits Distributed Fault tolerant Soft real time Highly available non stop applications Hot swapping where code can be changed without stopping a system 6 The Erlang programming language has immutable data pattern matching and functional programming 7 The sequential subset of the Erlang language supports eager evaluation single assignment and dynamic typing A normal Erlang application is built out of hundreds of small Erlang processes It was originally proprietary software within Ericsson developed by Joe Armstrong Robert Virding and Mike Williams in 1986 8 but was released as free and open source software in 1998 9 10 Erlang OTP is supported and maintained by the Open Telecom Platform OTP product unit at Ericsson Contents 1 History 1 1 Processes 1 2 Usage 2 Functional programming examples 2 1 Factorial 2 2 Fibonacci sequence 2 3 Quicksort 3 Data types 4 Let it crash coding style 4 1 Supervisor trees 5 Concurrency and distribution orientation 6 Implementation 7 Hot code loading and modules 8 Distribution 9 See also 10 References 11 Further reading 12 External linksHistory editThe name Erlang attributed to Bjarne Dacker has been presumed by those working on the telephony switches for whom the language was designed to be a reference to Danish mathematician and engineer Agner Krarup Erlang and a syllabic abbreviation of Ericsson Language 8 11 12 Erlang was designed with the aim of improving the development of telephony applications 13 The initial version of Erlang was implemented in Prolog and was influenced by the programming language PLEX used in earlier Ericsson exchanges By 1988 Erlang had proven that it was suitable for prototyping telephone exchanges but the Prolog interpreter was far too slow One group within Ericsson estimated that it would need to be 40 times faster to be suitable for production use In 1992 work began on the BEAM virtual machine VM which compiles Erlang to C using a mix of natively compiled code and threaded code to strike a balance between performance and disk space 14 According to co inventor Joe Armstrong the language went from lab product to real applications following the collapse of the next generation AXE telephone exchange named AXE N in 1995 As a result Erlang was chosen for the next Asynchronous Transfer Mode ATM exchange AXD 8 nbsp Robert Virding and Joe Armstrong 2013 nbsp Mike Williams In February 1998 Ericsson Radio Systems banned the in house use of Erlang for new products citing a preference for non proprietary languages 15 The ban caused Armstrong and others to make plans to leave Ericsson 16 In March 1998 Ericsson announced the AXD301 switch 8 containing over a million lines of Erlang and reported to achieve a high availability of nine 9 s 17 In December 1998 the implementation of Erlang was open sourced and most of the Erlang team resigned to form a new company Bluetail AB 8 Ericsson eventually relaxed the ban and re hired Armstrong in 2004 16 In 2006 native symmetric multiprocessing support was added to the runtime system and VM 8 Processes edit Erlang applications are built of very lightweight Erlang processes in the Erlang runtime system Erlang processes can be seen as living objects object oriented programming with data encapsulation and message passing but capable of changing behavior during runtime The Erlang runtime system provides strict process isolation between Erlang processes this includes data and garbage collection separated individually by each Erlang process and transparent communication between processes see Location transparency on different Erlang nodes on different hosts Joe Armstrong co inventor of Erlang summarized the principles of processes in his PhD thesis 18 Everything is a process Processes are strongly isolated Process creation and destruction is a lightweight operation Message passing is the only way for processes to interact Processes have unique names If you know the name of a process you can send it a message Processes share no resources Error handling is non local Processes do what they are supposed to do or fail Joe Armstrong remarked in an interview with Rackspace in 2013 If Java is write once run anywhere then Erlang is write once run forever 19 Usage edit In 2014 Ericsson reported Erlang was being used in its support nodes and in GPRS 3G and LTE mobile networks worldwide and also by Nortel and T Mobile 20 Erlang is used in RabbitMQ As Tim Bray director of Web Technologies at Sun Microsystems expressed in his keynote at O Reilly Open Source Convention OSCON in July 2008 If somebody came to me and wanted to pay me a lot of money to build a large scale message handling system that really had to be up all the time could never afford to go down for years at a time I would unhesitatingly choose Erlang to build it in Erlang is the programming language used to code WhatsApp 21 It is also the language of choice for Ejabberd an XMPP messaging server Elixir is a programming language that compiles into BEAM byte code via Erlang Abstract Format 22 Since being released as open source Erlang has been spreading beyond telecoms establishing itself in other vertical markets such as FinTech gaming healthcare automotive internet of things and blockchain Apart from WhatsApp there are other companies listed as Erlang s success stories Vocalink a MasterCard company Goldman Sachs Nintendo AdRoll Grindr BT Mobile Samsung OpenX and SITA 23 24 Functional programming examples editFactorial edit A factorial algorithm implemented in Erlang module fact This is the file fact erl the module and the filename must match export fac 1 This exports the function fac of arity 1 1 parameter no type no name fac 0 gt 1 If 0 then return 1 otherwise note the semicolon meaning else fac N when N gt 0 is integer N gt N fac N 1 Recursively determine then return the result note the period meaning endif or function end This function will crash if anything other than a nonnegative integer is given It illustrates the Let it crash philosophy of Erlang Fibonacci sequence edit A tail recursive algorithm that produces the Fibonacci sequence The module declaration must match the file name series erl module series The export statement contains a list of all those functions that form the module s public API In this case this module exposes a single function called fib that takes 1 argument I E has an arity of 1 The general syntax for export is a list containing the name and arity of each public function export fib 1 Public API Handle cases in which fib 1 receives specific values The order in which these function signatures are declared is a vital part of this module s functionality If fib 1 is passed precisely the integer 0 then return 0 fib 0 gt 0 If fib 1 receives a negative number then return the atom err neg val Normally such defensive coding is discouraged due to Erlang s Let it Crash philosophy however in this case we should explicitly prevent a situation that will crash Erlang s runtime engine fib N when N lt 0 gt err neg val If fib 1 is passed an integer less than 3 then return 1 The preceding two function signatures handle all cases where N lt 1 so this function signature handles cases where N 1 or N 2 fib N when N lt 3 gt 1 For all other values call the private function fib int 3 to perform the calculation fib N gt fib int N 0 1 Private API If fib int 3 receives a 1 as its first argument then we re done so return the value in argument B Since we are not interested in the value of the second argument we denote this using to indicate a don t care value fib int 1 B gt B For all other argument combinations recursively call fib int 3 where each call does the following decrement counter N Take the previous fibonacci value in argument B and pass it as argument A Calculate the value of the current fibonacci number and pass it as argument B fib int N A B gt fib int N 1 B A B Here is the same program without the explanatory comments module series export fib 1 fib 0 gt 0 fib N when N lt 0 gt err neg val fib N when N lt 3 gt 1 fib N gt fib int N 0 1 fib int 1 B gt B fib int N A B gt fib int N 1 B A B Quicksort edit Quicksort in Erlang using list comprehension 25 qsort qsort List Sort a list of items module qsort This is the file qsort erl export qsort 1 A function qsort with 1 parameter is exported no type no name qsort gt If the list is empty return an empty list nothing to sort qsort Pivot Rest gt Compose recursively a list with Front for all elements that should be before Pivot then Pivot then Back for all elements that should be after Pivot qsort Front Front lt Rest Front lt Pivot Pivot qsort Back Back lt Rest Back gt Pivot The above example recursively invokes the function qsort until nothing remains to be sorted The expression Front Front lt Rest Front lt Pivot is a list comprehension meaning Construct a list of elements Front such that Front is a member of Rest and Front is less than Pivot is the list concatenation operator A comparison function can be used for more complicated structures for the sake of readability The following code would sort lists according to length This is file listsort erl the compiler is made this way module listsort Export by length with 1 parameter don t care about the type and name export by length 1 by length Lists gt Use qsort 2 and provides an anonymous function as a parameter qsort Lists fun A B gt length A lt length B end qsort gt If list is empty return an empty list ignore the second parameter qsort Pivot Rest Smaller gt Partition list with Smaller elements in front of Pivot and not Smaller elements after Pivot and sort the sublists qsort X X lt Rest Smaller X Pivot Smaller Pivot qsort Y Y lt Rest not Smaller Y Pivot Smaller A Pivot is taken from the first parameter given to qsort and the rest of Lists is named Rest Note that the expression X X lt Rest Smaller X Pivot is no different in form from Front Front lt Rest Front lt Pivot in the previous example except for the use of a comparison function in the last part saying Construct a list of elements X such that X is a member of Rest and Smaller is true with Smaller being defined earlier as fun A B gt length A lt length B end The anonymous function is named Smaller in the parameter list of the second definition of qsort so that it can be referenced by that name within that function It is not named in the first definition of qsort which deals with the base case of an empty list and thus has no need of this function let alone a name for it Data types editErlang has eight primitive data types Integers Integers are written as sequences of decimal digits for example 12 12375 and 23427 are integers Integer arithmetic is exact and only limited by available memory on the machine This is called arbitrary precision arithmetic Atoms Atoms are used within a program to denote distinguished values They are written as strings of consecutive alphanumeric characters the first character being lowercase Atoms can contain any character if they are enclosed within single quotes and an escape convention exists which allows any character to be used within an atom Atoms are never garbage collected and should be used with caution especially if using dynamic atom generation Floats Floating point numbers use the IEEE 754 64 bit representation References References are globally unique symbols whose only property is that they can be compared for equality They are created by evaluating the Erlang primitive make ref Binaries A binary is a sequence of bytes Binaries provide a space efficient way of storing binary data Erlang primitives exist for composing and decomposing binaries and for efficient input output of binaries Pids Pid is short for process identifier a Pid is created by the Erlang primitive spawn Pids are references to Erlang processes Ports Ports are used to communicate with the external world Ports are created with the built in function open port Messages can be sent to and received from ports but these messages must obey the so called port protocol Funs Funs are function closures Funs are created by expressions of the form fun gt end And three compound data types Tuples Tuples are containers for a fixed number of Erlang data types The syntax D1 D2 Dn denotes a tuple whose arguments are D1 D2 Dn The arguments can be primitive data types or compound data types Any element of a tuple can be accessed in constant time Lists Lists are containers for a variable number of Erlang data types The syntax Dh Dt denotes a list whose first element is Dh and whose remaining elements are the list Dt The syntax denotes an empty list The syntax D1 D2 Dn is short for D1 D2 Dn The first element of a list can be accessed in constant time The first element of a list is called the head of the list The remainder of a list when its head has been removed is called the tail of the list Maps Maps contain a variable number of key value associations The syntax is Key1 gt Value1 KeyN gt ValueN Two forms of syntactic sugar are provided Strings Strings are written as doubly quoted lists of characters This is syntactic sugar for a list of the integer Unicode code points for the characters in the string Thus for example the string cat is shorthand for 99 97 116 26 Records Records provide a convenient way for associating a tag with each of the elements in a tuple This allows one to refer to an element of a tuple by name and not by position A pre compiler takes the record definition and replaces it with the appropriate tuple reference Erlang has no method to define classes although there are external libraries available 27 Let it crash coding style editErlang is designed with a mechanism that makes it easy for external processes to monitor for crashes or hardware failures rather than an in process mechanism like exception handling used in many other programming languages Crashes are reported like other messages which is the only way processes can communicate with each other 28 and subprocesses can be spawned cheaply see below The let it crash philosophy prefers that a process be completely restarted rather than trying to recover from a serious failure 29 Though it still requires handling of errors this philosophy results in less code devoted to defensive programming where error handling code is highly contextual and specific 28 Supervisor trees edit A typical Erlang application is written in the form of a supervisor tree This architecture is based on a hierarchy of processes in which the top level process is known as a supervisor The supervisor then spawns multiple child processes that act either as workers or more lower level supervisors Such hierarchies can exist to arbitrary depths and have proven to provide a highly scalable and fault tolerant environment within which application functionality can be implemented Within a supervisor tree all supervisor processes are responsible for managing the lifecycle of their child processes and this includes handling situations in which those child processes crash Any process can become a supervisor by first spawning a child process then calling erlang monitor 2 on that process If the monitored process then crashes the supervisor will receive a message containing a tuple whose first member is the atom DOWN The supervisor is responsible firstly for listening for such messages and secondly for taking the appropriate action to correct the error condition Concurrency and distribution orientation editErlang s main strength is support for concurrency It has a small but powerful set of primitives to create processes and communicate among them Erlang is conceptually similar to the language occam though it recasts the ideas of communicating sequential processes CSP in a functional framework and uses asynchronous message passing 30 Processes are the primary means to structure an Erlang application They are neither operating system processes nor threads but lightweight processes that are scheduled by BEAM Like operating system processes but unlike operating system threads they share no state with each other The estimated minimal overhead for each is 300 words 31 Thus many processes can be created without degrading performance In 2005 a benchmark with 20 million processes was successfully performed with 64 bit Erlang on a machine with 16 GB random access memory RAM total 800 bytes process 32 Erlang has supported symmetric multiprocessing since release R11B of May 2006 While threads need external library support in most languages Erlang provides language level features to create and manage processes with the goal of simplifying concurrent programming Though all concurrency is explicit in Erlang processes communicate using message passing instead of shared variables which removes the need for explicit locks a locking scheme is still used internally by the VM 33 Inter process communication works via a shared nothing asynchronous message passing system every process has a mailbox a queue of messages that have been sent by other processes and not yet consumed A process uses the receive primitive to retrieve messages that match desired patterns A message handling routine tests messages in turn against each pattern until one of them matches When the message is consumed and removed from the mailbox the process resumes execution A message may comprise any Erlang structure including primitives integers floats characters atoms tuples lists and functions The code example below shows the built in support for distributed processes Create a process and invoke the function web start server Port MaxConnections ServerProcess spawn web start server Port MaxConnections Create a remote process and invoke the function web start server Port MaxConnections on machine RemoteNode RemoteProcess spawn RemoteNode web start server Port MaxConnections Send a message to ServerProcess asynchronously The message consists of a tuple with the atom pause and the number 10 ServerProcess pause 10 Receive messages sent to this process receive a message gt do something data DataContent gt handle DataContent hello Text gt io format Got hello message s Text goodbye Text gt io format Got goodbye message s Text end As the example shows processes may be created on remote nodes and communication with them is transparent in the sense that communication with remote processes works exactly as communication with local processes Concurrency supports the primary method of error handling in Erlang When a process crashes it neatly exits and sends a message to the controlling process which can then take action such as starting a new process that takes over the old process s task 34 35 Implementation editThe official reference implementation of Erlang uses BEAM 36 BEAM is included in the official distribution of Erlang called Erlang OTP BEAM executes bytecode which is converted to threaded code at load time It also includes a native code compiler on most platforms developed by the High Performance Erlang Project HiPE at Uppsala University Since October 2001 the HiPE system is fully integrated in Ericsson s Open Source Erlang OTP system 37 It also supports interpreting directly from source code via abstract syntax tree via script as of R11B 5 release of Erlang Hot code loading and modules editErlang supports language level Dynamic Software Updating To implement this code is loaded and managed as module units the module is a compilation unit The system can keep two versions of a module in memory at the same time and processes can concurrently run code from each The versions are referred to as the new and the old version A process will not move into the new version until it makes an external call to its module An example of the mechanism of hot code loading A process whose only job is to keep a counter First version module counter export start 0 codeswitch 1 start gt loop 0 loop Sum gt receive increment Count gt loop Sum Count counter Pid gt Pid counter Sum loop Sum code switch gt MODULE codeswitch Sum Force the use of codeswitch 1 from the latest MODULE version end codeswitch Sum gt loop Sum For the second version we add the possibility to reset the count to zero Second version module counter export start 0 codeswitch 1 start gt loop 0 loop Sum gt receive increment Count gt loop Sum Count reset gt loop 0 counter Pid gt Pid counter Sum loop Sum code switch gt MODULE codeswitch Sum end codeswitch Sum gt loop Sum Only when receiving a message consisting of the atom code switch will the loop execute an external call to codeswitch 1 MODULE is a preprocessor macro for the current module If there is a new version of the counter module in memory then its codeswitch 1 function will be called The practice of having a specific entry point into a new version allows the programmer to transform state to what is needed in the newer version In the example the state is kept as an integer In practice systems are built up using design principles from the Open Telecom Platform which leads to more code upgradable designs Successful hot code loading is exacting Code must be written with care to make use of Erlang s facilities Distribution editIn 1998 Ericsson released Erlang as free and open source software to ensure its independence from a single vendor and to increase awareness of the language Erlang together with libraries and the real time distributed database Mnesia forms the OTP collection of libraries Ericsson and a few other companies support Erlang commercially Since the open source release Erlang has been used by several firms worldwide including Nortel and T Mobile 38 Although Erlang was designed to fill a niche and has remained an obscure language for most of its existence its popularity is growing due to demand for concurrent services 39 40 Erlang has found some use in fielding massively multiplayer online role playing game MMORPG servers 41 See also editElixir a functional concurrent general purpose programming language that runs on BEAM Luerl Lua on the BEAM designed and implemented by one of the creators of Erlang Lisp Flavored Erlang LFE a Lisp based programming language that runs on BEAM Mix build tool Phoenix web framework References edit Release 26 2 4 12 April 2024 Retrieved 19 April 2024 Conferences N D C 4 June 2014 Joe Armstrong Functional Programming the Long Road to Enlightenment a Historical and Personal Narrative Vimeo Clojure Lisp meets Java with a side of Erlang O Reilly Radar radar oreilly com Influences The Rust Reference The Rust Reference Retrieved 18 April 2023 Erlang Introduction erlang org Armstrong Joe Dacker Bjarne Lindgren Thomas Millroth Hakan Open source Erlang White Paper Archived from the original on 25 October 2011 Retrieved 31 July 2011 Hitchhiker s Tour of the BEAM Robert Virding http www erlang factory com upload presentations 708 HitchhikersTouroftheBEAM pdf a b c d e f Armstrong Joe 2007 History of Erlang HOPL III Proceedings of the third ACM SIGPLAN conference on History of programming languages ISBN 978 1 59593 766 7 How tech giants spread open source programming love CIO com 8 January 2016 Archived from the original on 22 February 2019 Retrieved 5 September 2016 Erlang OTP Released as Open Source 1998 12 08 Archived from the original on 9 October 1999 Erlang the mathematician February 1999 Free Online Dictionary of Computing Erlang History of Erlang Erlang org Armstrong Joe August 1997 The development of Erlang Proceedings of the second ACM SIGPLAN international conference on Functional programming Vol 32 pp 196 203 doi 10 1145 258948 258967 ISBN 0897919181 S2CID 6821037 a href Template Cite book html title Template Cite book cite book a journal ignored help Dacker Bjarne October 2000 Concurrent Functional Programming for Telecommunications A Case Study of Technology Introduction PDF Thesis Royal Institute of Technology p 37 a b question about Erlang s future 6 July 2010 Concurrency Oriented Programming in Erlang PDF 9 November 2002 Armstrong Joe 20 November 2003 Making reliable distributed systems in the presence of software errors DTech thesis Stockholm Sweden The Royal Institute of Technology McGreggor Duncan 26 March 2013 Rackspace takes a look at the Erlang programming language for distributed computing Video Rackspace Studios SFO Archived from the original on 11 December 2021 Retrieved 24 April 2019 Ericsson Ericsson com 4 December 2014 Retrieved 7 April 2018 Inside Erlang The Rare Programming Language Behind WhatsApp s Success fastcompany com 21 February 2014 Retrieved 12 November 2019 Erlang Elixir Syntax A Crash Course elixir lang github com Retrieved 10 October 2022 Which companies are using Erlang and why MyTopdogStatus erlang solutions com 11 September 2019 Retrieved 15 March 2020 Which new companies are using Erlang and Elixir MyTopdogStatus erlang solutions com 2 March 2020 Retrieved 24 June 2020 Erlang List Comprehensions erlang org String and Character Literals Retrieved 2 May 2015 ect Erlang Class Transformation add object oriented programming to Erlang Google Project Hosting Retrieved 2 May 2015 a b Verraes Mathias 9 December 2014 Let It Crash Mathias Verraes Blog Retrieved 10 February 2021 Reactive Design Patterns www reactivedesignpatterns com Retrieved 10 February 2021 Armstrong Joe September 2010 Erlang Communications of the ACM 53 9 68 75 doi 10 1145 1810891 1810910 Erlang is conceptually similar to the occam programming language though it recasts the ideas of CSP in a functional framework and uses asynchronous message passing Erlang Efficiency Guide Processes Archived from the original on 27 February 2015 Wiger Ulf 14 November 2005 Stress testing erlang comp lang functional misc Retrieved 25 August 2006 Lock free message queue Archived from the original on 24 December 2013 Retrieved 23 December 2013 Armstrong Joe Erlang robustness Archived from the original on 23 April 2015 Retrieved 15 July 2010 Erlang Supervision principles Archived from the original on 6 February 2015 Retrieved 15 July 2010 Erlang Compilation and Code Loading erlang org Retrieved 21 December 2017 High Performance Erlang Retrieved 26 March 2011 Who uses Erlang for product development Frequently asked questions about Erlang Retrieved 16 July 2007 The largest user of Erlang is surprise Ericsson Ericsson use it to write software used in telecommunications systems Many dozens of projects have used it a particularly large one is the extremely scalable AXD301 ATM switch Other commercial users listed as part of the FAQ include Nortel Deutsche Flugsicherung the German national air traffic control organisation and T Mobile Programming Erlang Retrieved 13 December 2008 Virtually all language use shared state concurrency This is very difficult and leads to terrible problems when you handle failure and scale up the system Some pretty fast moving startups in the financial world have latched onto Erlang for example the Swedish www kreditor se Erlang the next Java Archived from the original on 11 October 2007 Retrieved 8 October 2008 I do not believe that other languages can catch up with Erlang anytime soon It will be easy for them to add language features to be like Erlang It will take a long time for them to build such a high quality VM and the mature libraries for concurrency and reliability So Erlang is poised for success If you want to build a multicore application in the next few years you should look at Erlang Clarke Gavin 5 February 2011 Battlestar Galactica vets needed for online roleplay Music and Media The Reg Retrieved 8 February 2011 Further reading editArmstrong Joe 2003 Making reliable distributed systems in the presence of software errors PDF PhD The Royal Institute of Technology Stockholm Sweden Archived from the original PDF on 23 March 2015 Retrieved 13 February 2016 Armstrong Joe 2007 A history of Erlang Proceedings of the third ACM SIGPLAN conference on History of programming languages HOPL III pp 6 1 doi 10 1145 1238844 1238850 ISBN 978 1 59593 766 7 S2CID 555765 Early history of Erlang Archived 29 August 2019 at the Wayback Machine by Bjarne Dacker Mattsson H Nilsson H Wikstrom C 1999 Mnesia A distributed robust DBMS for telecommunications applications First International Workshop on Practical Aspects of Declarative Languages PADL 99 152 163 Armstrong Joe Virding Robert Williams Mike Wikstrom Claes 16 January 1996 Concurrent Programming in Erlang 2nd ed Prentice Hall p 358 ISBN 978 0 13 508301 7 Archived from the original on 6 March 2012 Armstrong Joe 11 July 2007 Programming Erlang Software for a Concurrent World 1st ed Pragmatic Bookshelf p 536 ISBN 978 1 934356 00 5 Thompson Simon J Cesarini Francesco 19 June 2009 Erlang Programming A Concurrent Approach to Software Development 1st ed Sebastopol California O Reilly Media Inc p 496 ISBN 978 0 596 51818 9 Logan Martin Merritt Eric Carlsson Richard 28 May 2010 Erlang and OTP in Action 1st ed Greenwich CT Manning Publications p 500 ISBN 978 1 933988 78 8 Martin Brown 10 May 2011 Introduction to programming in Erlang Part 1 The basics developerWorks IBM Retrieved 10 May 2011 Martin Brown 17 May 2011 Introduction to programming in Erlang Part 2 Use advanced features and functionality developerWorks IBM Retrieved 17 May 2011 Wiger Ulf 30 March 2001 Four fold Increase in Productivity and Quality Industrial Strength Functional Programming in Telecom Class Products PDF FEmSYS 2001 Deployment on distributed architectures Ericsson Telecom AB Archived from the original PDF on 19 August 2019 Retrieved 16 September 2014 External links edit nbsp Wikimedia Commons has media related to Erlang programming language nbsp Wikibooks has a book on the topic of Erlang Programming Official website nbsp Retrieved from https en wikipedia org w index php title Erlang programming language amp oldid 1204677377, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.