2
votes
1answer
69 views
couchDB: storing MB per document
I am analyzing couchDB at the moment. Is it possible to storage MB worth of data per document? E.g. a JPEG image.
I understand I would need to encode (base64 or something) the said data in order to …
1
vote
2answers
63 views
Where does Nitrogen get the best performance - yaws, mochiweb, or inets?
The Nitrogen project web page declares equal support for yaws, mochiweb, and inets, but with which of these web servers is it going to perform the best? I.e. for a large scale application with mostly …
3
votes
3answers
86 views
Erlang : Traversing N by N area
I am looking to traverse a NxN area, given the starting points X,Y and the size of the square to traverse. E.g. given X=10,Y=12,Size=2 - i want to generate 10,10 ; 10,11 ; 11,10 and 11,11.
I came up …
2
votes
6answers
153 views
Erlang : Returning from a function
I have a function in which I have a series of individual case statements.
case ... of
...
end,
case ... of
...
end,
...
etc.
I want to return from the function immediately when a …
1
vote
4answers
140 views
Erlang Documentation/SMP: single-node and multi-node per machine or per application, and the confusion that may follow.
I'm studying Erlang's process model at the moment. I have hit a snag in a tech report (section 3, paragraph 2) on Erlang:
This explains why it in some cases can be more efficient to run several …
2
votes
3answers
74 views
Erlang compound boolean expression
I am still finding my feet with erlang, and I read the documentation about using "and", "or" operators, but why is the following not evaluating?
X = 15,
Y = 20,
X==15 and Y==20.
I am expecting for …
2
votes
4answers
66 views
erlang - startup script
To start my program I do the next sequence:
$ erl
> c(module1).
> c(module2).
> c(modulen).
modulen:start().
Is there any possibility to create script that allow me to launch my program ?
1
vote
2answers
88 views
Same Machine Erlang communication
I need an answer to the following question to help understand what approach I should be taking to interface with Erlang. AFAIK Erlang on a SMP UNIX box uses the multi-process approach. In this case it …
1
vote
1answer
59 views
.erlang file in windows
Hi, there,
I am reading Joe Armstrong's book on Erlang, "Programming Erlang: software for a concurrent world."
In a couple of places he talks about a .erlang file that lives where the erlang library …
0
votes
3answers
70 views
Ejabberd Memory Consumption (or Leak?)
I'm using ejabberd + mochiweb on our server. The longer I keep ejabberd and mochiweb running, the more memory is consumed (last night it was consuming 35% of memory. right now it's a bit above 50%). …
2
votes
9answers
284 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
…
0
votes
1answer
124 views
NoSql - which is best for my needs - i am having mental breakdown
I am building a Reddit clone in Erlang. I am considering using some erlang web frameworks but this is not the problem.
I am having a problem selecting a database.
How it works;
I have multiple …
2
votes
2answers
62 views
Variable length of function argument list in Erlang.
Is it possible to define function with argument list of variable length?
I know I can write just:
function() -> function([]).
function(X) when not is_list(X) -> function([X]);
function(X) …
1
vote
8answers
307 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 …
7
votes
2answers
108 views
Profiling Mnesia Queries
Our Mnesia DB is running slowly and we think it should be somewhat faster.
So we need to profile it and work out what is happening.
There are a number of options that suggest themselves:
run …
