I am developing a application for benchmarking purposes, for which I require to create large number of http connection in a short time, I created a program in java to test how much threads is java abl
I am really struggling to understand tail recursion in Erlang. I have the following eunit test: db_write_many_test() ->
startTrains() -> TotalDist = 100, Trains = [trainA,trainB ], PID = spawn(fun() -> train(1,length(Trains)) end),
I am trying to get my head round some basic erlang functionality and I could do with some comments on the following.
I have a OTP application comprising a single supervisor supervising a small number ofgen_servers. A typical child specification is as follows:
I need my erlang application to read and write through a named pipe. Opening the named pipe as a file will fail with eisdir.
Since a few months I\'ve been learning Erlang, and now it was time to do some basic GUI. After some quick research I saw there was an interesting library called \'wxi\' (based on Fudgets of Haskell)
I have the following function that takes a number like 5 and creates a list of all the numbers from 1 to that number so create(5). returns [1,2,3,4,5].
Is there any way to implement Erlang-style light-weight processes in .NET? I found some projects that implement Erlang messaging model (actors model). For example, Axum. But I found nothing about lig
I try to compare Mnesia with more traditional databases. As I understand it tables in Mnesia can be located to (see Memory consumption in Mnesia):