Permits access to the specified set of nodes. Before the first call to allow/1, any node with the correct cookie can be connected. When allow/1 is called, a list of allowed nodes is established. Any ...
A distributed Erlang system consists of a number of Erlang runtime systems communicating with each other. Each such runtime system is called a node. Message passing between processes at different ...
In Erlang, a Bin is used for constructing binaries and matching binary patterns. A Bin is written with the following syntax: Here, Bin is bound and the elements are bound or unbound, as in any match.
So the important thing when recursing and building a list is to make sure that you attach the new elements to the beginning of the list, so that you build a list, and not hundreds or thousands of ...
The earlier chapters of this User Guide described how to get started with Mnesia, and how to build a Mnesia database. In this chapter, we will describe the more advanced features available when ...
Thu May 28 15:17:31 CEST 2009 ...
The C-part of Erlang ODBC application on Unix should be compiled with GCC C-compiler version 2.7.2 or higher. The GCC C-compiler must be found in the PATH environment variable. This is easily verified ...
If you need to keep a database that will be used by multiple processes and/or nodes, using Mnesia means you don't have to write your own access controls. It depends. Erlang has no problem storing ...
This section describes the general principles of the Finite State Machine (FSM) behaviour and shows how to make FSM based applications. Refer to the Reference Manual stdlib, the module gen_fsm for ...
Erlang is a dynamically typed language. Still, it comes with a notation for declaring sets of Erlang terms to form a particular type, effectively forming a specific sub-type of the set of all Erlang ...
Main user interface for the Common Test framework.
PLI (Principles, Logics, and Implementations of High-Level Programming Languages) was a confederation of conferences and workshops aimed at the advancement of high-level programming languages and ICFP ...