Erlang – Web Programming
In this guide, we will discuss Erlang web programming. In Erlang, the inets library is available to build web servers in Erlang. Letβs look at some of the functions available in Erlang…
In this guide, we will discuss Erlang web programming. In Erlang, the inets library is available to build web servers in Erlang. Letβs look at some of the functions available in Erlang…
In this guide, we will discuss Erlang Drivers. Sometimes we want to run a foreign-language program inside the Erlang Runtime System. In this case, the program is written as a…
In this guide, we will discuss Erlang Performance. When talking about performance the following points need to be noted about Erlang. Funs are very fast β Funs was given its own…
In this guide, we will discuss Erlang Concurrency. Concurrent programming in Erlang needs to have the following basic principles or processes. The list includes the following principles β piD =…
In this guide, we will discuss Erlang OTP. OTP stands for Open Telecom Platform. Itβs an application operating system and a set of libraries and procedures used for building large-scale,…
In this guide, we will discuss Erlang Spawnlink. This is used to create a new process link on a node. Syntax spawn(Node,Function) Parameters Node β The node on which the function…
In this guide, we will discuss Erlang is_alive. This returns true if the local node is alive and can be part of a distributed system. Otherwise, it returns false. Syntax…
In this guide, we will discuss Erlang spawn on Node. This is used to create a new process on a node. Syntax spawn(Node,Function) Parameters Node β The node on which the…
In this guide, we will discuss Erlang node. This is used to determine the value of the node on which the process needs to run. Since distributed programming is used…
In this guide, we will discuss Erlang spawn. This is used to create a new process and initialize it. Syntax spawn(Function) Parameters Function β The function which needs to be spawned.…