Erlang is a general-purpose, garbage-collected programming language and runtime environment, with built-in support for concurrency, distribution and fault tolerance.
Erlang is a general-purpose functional programming language and runtime environment. It has built-in support for concurrency, distribution and fault tolerance. Erlang is used in several large telecommunication systems from Ericsson. Erlang is open source and available for download on GitHub.
I am a newbie to erlang and chicago boss. I followed Chicago boss API documentation. I have been working with Python and Django earlier. Now in Chicago boss can we add foreign key in models.
This is my model.
model: anatomy.erl
-module(anatomy,…
This is a completely newbie question from a Java programmer trying to learn Erlang. What's the equivalent of a Java JAR file in Erlang by which 3'rd party libraries can be included in an Erlang application?
The other day I made a copy of the…
I'm trying to install Erlang/OTP following the documentation at
http://www.erlang.org/doc/installation_guide/INSTALL.html.
I'm having problems building the Erlang/OTP release.
When I run make, I get:
Makefile:247:…
Is there a mature and stable YAML library for Erlang that someone has actually used? I can't seem to find one anywhere
Update:
I have searched and searched and still not found one
I am trying to get a rabbitMQ queue set up that sits on one pc, and recieves messagess from other computers giving it tasks. I have followed all the tutorials on the rabbit website but these only apply to local host. Can someone explain how I get…
I'm learning Elixir, and the tool 'dialyzer' lets you do static analysis - annotate the function definition with the type specification of the parameters it expects and the output it returns. It's completely optional, but if it were to be used to…
I am beginning Erlang and as an exercise I tried to implement the CYK algorithm.
Main code(cyk.erl):
%%% An attempt for a CYK parser in Erlang
-module(cyk).
-export([
init_storage/0,
import_grammar_file/1,
…
Erlang R17.0 x64 on Windows 7 x64.
When I type clear in a werl window, I see the ANSI escape sequence displayed. I also tried clear()--same result. From my digging around it looks like werl should be able to handle ANSI escape sequences. Is…
Normally if I'd like to have an Erlang process timeout I would use the following construct:
receive
Msg -> ok; %% handle message
after 60000 ->
%% Handle timeout and exit
end.
Is there a similar mechanism in the OTP servers such as…
I have couple of interconnected computers. On every machine there is running Erlang node and I'd like to communicate with each other passing Erlang terms (peer-to-peer style). However nodes on other computers are listed in nodes() only after I…
After posting yesterday about a fairly slow couchdb design-doc/view yesterday here:
CouchDB delay building index (CouchDB 1.5.0 on Windows Server 2008 R2) , I am trying to investigate if I could gain significant performance if I was to rewrite slow…