0
votes
1answer
28 views
A simple explanation of Rings in Riak?
I'm trying to understand what the "rings" in Riak are, but I can't seem to find a clear explanation (please don't just link me to a web site, I have already read what is on the web). As far as I …
0
votes
3answers
65 views
How can I install Riak on several remote nodes using hot code loading?
I have been learning Riak on a single machine and have access to a cluster of Erlang nodes (on Ubuntu 9). Using remote code loading how do I install Riak onto all the remote nodes?
For example, …
0
votes
1answer
5 views
Make doesn’t work for Erlang 5.7.4 on Solaris?
Has anyone managed to build Erlang on OpenSolaris? Every time I try I get:
user@opensolaris:~/otp_src_R13B03# make clean
make: Fatal error in reader: Makefile, line 94: Badly formed macro assignment
2
votes
0answers
8 views
Is there an Erlang os:cmd equivalent that takes a list of strings instead of a single command?
Is there a Erlang call where I can do Retval = subprocess:call(["cmd", "arg1", "arg2", "arg3"])?
If I'm building a complex command to execute, with os:cmd/1 it is easy to make escaping mistakes. …
2
votes
0answers
5 views
Erlang atoms and tuples in Thrift
Which is the corresponding Thrift type for:
an Erlang tuple (I can imagine it's a struct)
an Erlang atom (if any?)
Is there any documentation available with the direct mappings between the Erlang …
29
votes
12answers
959 views
Why did you decide “against” using Erlang?
Have you actually "tried" (means programmed in, not just read an article on it) Erlang and decided against it for a project? If so, why? Also, if you have opted to go back to your old language, or to …
0
votes
1answer
34 views
How to control number of running worker processes ?
What is a design pattern in erlang in terms of gen_server to create a fixed number of worker processes and feed them with 'jobs' to perform some actions ? Each worker process talks with an external …
0
votes
4answers
146 views
How does TDD compare with Functional Programming Languages?
How does TDD compare with Functional Programming Languages like F# and Erlang?
I haven't actually worked directly with a functional programming language yet, but from what I've seen of it, you have …
5
votes
3answers
113 views
Erlang’s maximum number of simultaneous open ports?
Does the erlang TCP/IP library have some limitations? I've done some searching but can't find any definitive answers.
I have set the ERL_MAX_PORTS environment variable to 12000 and configured Yaws to …
3
votes
3answers
195 views
How does Scala scale on a cluster?
I have been learning Erlang, but also I'm keeping my eyes open to other technologies such as Scala. Does anyone know how Scala's multi node performance compares to Erlang?
4
votes
3answers
69 views
How to visualize an Erlang gen_fsm
Do you know of any existing tool to graphically render the diagram of an Erlang gen_fsm starting from the source code?
0
votes
1answer
43 views
How to set up a Yaws yapp?
Hi,
I am struggling with setting up a yapp for Yaws. Can anyone provide a link to documentation or copy paste a short example here?
Sorry that this is a rather unspecific question, but I am more or …
1
vote
3answers
113 views
How to write a simple webserver in Erlang?
Using the default Erlang installation what is the minimum code needed to produce a "Hello world" producing web server?
20
votes
2answers
330 views
Is F# really faster than Erlang at spawning and killing processes?
Updated: This question contains an error which makes the benchmark meaningless. I will attempt a better benchmark comparing F# and Erlang's basic concurrency functionality and inquire about the …
3
votes
1answer
75 views
Sharing model definitions between Erlang and Rails (and mongodb)
I have a rails app using mongodb through mongomapper and all is well. The problem is... I'm going to want to use erlang to do some background processing and I want to update the same mongo/mongomapper …
