Reading this: The Hitchhiker\'s Guide to Concurrency, more specifically, the section about Amdahl\'s Law - the idea that a parallel program on开发者_如何转开发ly goes as fast as its slowest part, and
I am working on a logger module which stores text in a file. In this logger file Im trying to receive message from other modules in the same project. I have a controller that has a few outputs that is
When compiling an erlang file with erlc I can add additional include directories like so: erlc -I /home/trotter/code/open-source/yaws/include src/myapp.erl
I have a dictionary and want to convert it to a list. Then I would like to sort the resulting list consisting of {Key, Value} pairs from min to max depending on the 2nd element(Value).
I have a dictionary which I use to store another dictionary using the name of a parameter. I get a right hand side mismatch error.
I have 2 parts of code I want to execute. Bo开发者_StackOverflowth are conditionals if Value1 < N do something
I\'m currently working on a BitTorrent client in Erlang. Currently I\'m trying to request blocks and then build and
I\'m using Emacs and trying to get my unit testing work flow as automated as possible. I have it set up so it is working but I have to manually compile my module under test or the module containing th
I am interested in bench-marking different parts of my program for speed.I having tried us开发者_StackOverflow社区ing info(statistics) and erlang:now()
I have a logic module that tells a supervisor to start child processes. I need to store those childrens pid in the logic modules state. But I also need to update a childs pid if the supervisor restart