0
votes
1answer
8 views
is erlang considered managed or you have to handle memory/pointers?
is erlang considered managed or you have to handle memory/pointers?
0
votes
0answers
3 views
Erlang: cascaded supervisors?
Is it possible to cascade supervisors inside an application?
E.g. supervisor sup1 spawning a child process which creates a supervisor sup2 ?
0
votes
0answers
3 views
Erlang: how to embed inets:httpd ?
What is the proper way to embed the inets:httpd module inside an existing application?
I would like an example / guidelines to achieving this, please.
2
votes
3answers
55 views
Erlang : Mnesia : Lookup and update based on fields other than the key
I have a table in mnesia and I need to update individual fields in the records in it. According to http://stackoverflow.com/questions/1820996/erlang-mnesia-updating-a-single-field-value-in-a-row if I …
2
votes
8answers
184 views
Relation between language and scalability
I came across the following statement in Trapexit, an Erlang community website:
Erlang is a programming language used
to build massively scalable soft
real-time systems with requirements on
…
1
vote
4answers
50 views
Convert nested Lists into a List of Tuples
I have the following list
["txtvers=1","userid=3A6524D4-E31C-491D-94DD-555883B1600A","name=Jarrod Roberson","version=2"]
I want to create a Dict where the left side of the = is the key and the …
0
votes
3answers
112 views
Why does not init:stop() terminate directly?
My code for display all days in this year.
I don't understand why if NewSec =< EndSec -> init:stop() end did not execute the first time in run_calendar?
I expect init:stop() could be …
1
vote
2answers
52 views
Erlang : Which is more efficient in this scenario - using try catch or case statements?
Say I have some function fn1() in Erlang which returns {ok, Result} if the function was executed successfully and {error, "ErrorReason"} if there was an error.
Now in another function fn2() I call …
0
votes
3answers
91 views
Erlang : Breaking out of lists:foreach “loop”
I have a list of elements in Erlang, and I'm using lists:foreach to traverse through the elements in the list. Is there a way to break out of this "foreach loop" in the middle of the traversal. For …
0
votes
2answers
45 views
Erlang: runtime overhead of function parameter decoration?
Is there a runtime overhead if I use this sort of decoration?
get_next_state(_SPid=undefined, _NextPort=undefined) ->
stop;
0
votes
1answer
46 views
Erlang: inets:start(httpd …) not returning control?
My first time using inets:httpd isn't being a funny experience.
Q: How come doesn't the control get passed back to my gen_server when I do:
inets:start(httpd, Options) ?
I use this statement from …
0
votes
1answer
20 views
Mochiweb debug (like ejabberd debug)
I was wonderng if anyone knows of a way to get into Mochiweb like ejabberd does when you run /sbin/ejabberdctl debug?
2
votes
2answers
87 views
Current state of Erlang web development? Frameworks, Template languages
Django is to Python as Rails is to Ruby. What is the current front-runner for Erlang?
Recent Erlang web activity has resulted in many new frameworks but they are all still moving targets. ErlyWeb is …
5
votes
3answers
197 views
Erlang (Functional Programming) vs Object Oriented Programming in terms of thinking
I am learning Erlang and I am trying to create a very sample blog program. However my mind currently is trapped in the OO world (var p = new Post(); p.Title = ""; p.Save();). I would like to …
0
votes
1answer
19 views
Problems gen_tcp:accept
I've made a tcp server witch spawns a process to listen incoming connections. Here is the sample code (removed a few things from my original code):
module a:
main([]) ->
{ ok, Pid } = …
