0
votes
0answers
1 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?
0
votes
2answers
19 views
Mochiweb Log files
Anyone know where Mochiweb logs files by default? I'm running it along with the Beepbeep framework.
1
vote
2answers
54 views
Benefit to the “.app” file in Erlang?
I've never really used the .app files for my projects. I understand those are required for loading an application through the application module.
Is there another use of such files?
1
vote
7answers
191 views
It’s a good idea use ruby for socket programming?
My language of choice is Ruby, but I know because of twitter that Ruby can't handle a lot of requests. It is a good idea using it for socket development? or Should I use a functional language like …
1
vote
3answers
89 views
Common use cases of erlang
What are common use cases of erlang? I know about it in general, but I am looking for specific examples.
Are the following some situations where Erlang might be useful?
A distributed Job scheduler. …
1
vote
2answers
95 views
Integrating Erlang with C++
What interfaces exist to tie Erlang with C++?
-1
votes
6answers
278 views
What is the best language for sockets programming?
I'd like to develop software program that communicates between clients. What is the best programming language to do this?
1
vote
3answers
61 views
Providing robust message delivery in Erlang
This is in relation to the ongoing discussion in my previous Question
http://stackoverflow.com/questions/1810313/performance-penalty-of-message-passing-as-opposed-to-shared-data
One of issues …
0
votes
2answers
27 views
Messing with erlang and gen_event behaviour
In a concept proof I'm developing, I've built the folowing scheme:
_ A _ _
/ | \ \
SS S H CC
/ \
C C
In which:
A - Application
SS - Supervisor
CC - "Real" client
S - gen_server
…
0
votes
0answers
10 views
ejabberd ip address
Does anyone know if there's a direct way to map an IP address to a user logged into ejabberd? I found an indirect way by modifying ejabberd_receiver.erl and calling inet:peername(Socket) from here: …
3
votes
5answers
87 views
performance penalty of message passing as opposed to shared data
There is a lot of buzz these days about not using locks and using Message passing approaches like Erlang. Or about using immutable datastructures like in Functional programming vs. C++/Java.
But what …
0
votes
2answers
87 views
What does the “head mismatch” compiler error mean?
I tries to write code to print Z character.
zzzzzzz
z
z
z
z
z
zzzzzzz
But when I compile this code, it throws
D:\erlang\graphics>erlc zeez2.erl
d:/erlang/graphics/zeez2.erl:19: …
1
vote
1answer
65 views
Erlang: is there a module analogous to Python “webbrowser” ?
I've used Python webbrowser module and I would love something equivalent in Erlang. What I am trying to do is open a browser window/tab from Erlang.
I can't find anything in the official Erlang …
0
votes
1answer
29 views
Riak on Windows
I want to play with Riak http://riak.basho.com/ or a least get it running on a Windows system. I have downloaded the source code and compiled it but that's where I get stuck, how do I start it?
0
votes
2answers
109 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 …
