Erlang is a general-purpose programming language and runtime environment, with built-in support for concurrency, distribution and fault tolerance.

learn more… | top users | synonyms

1
vote
1answer
29 views

Simple_one_for_one can only be terminated if appointed SHUTDOWN strategy to brutal_kill?

The supervisor is an OTP behavior. init([]) -> RoomSpec = {mod_zytm_room, {mod_zytm_room, start_link, []}, transient, brutal_kill, worker, [mod_zytm_room]}, {ok, ...
1
vote
1answer
44 views

Mirrored queue performance factors

We operate two dual-node brokers, each broker having quite different queues and workloads. Each box has 24 cores (H/T) worth of Xeon E5645 @ 2.4GHz with 48GB RAM, connected by Gigabit LAN with ~150μs ...
1
vote
1answer
47 views

How to run erlang (rebar build) application

I am new to Erlang world and currently can't figure out how to start my dummy erlang application. Probably, I am just missing something... So, I created an application with rebar (rebar create-app ...
0
votes
1answer
37 views

Mnesia - Check for a value in either of the keys in the table

I have a mnesia table "users" created with the following record -record(users,{username,nickname,age}) Let's say i have the mnesia table like the following records users | username | nickname | ...
0
votes
1answer
40 views

Erlang identify umlauts

How can I identify german umlauts in Erlang? I tried for days now, when I read a text as list it just doesn't get them. I tried this for example change_umlaut(Word) -> ...
1
vote
2answers
51 views

erlang inter-process lock mechanism (such as flock)

Does Erlang have an inter-process lock mechanism such as flock ? The usage would be as follows (all programs are in Erlang) : a server starts serving a repository, and puts a file lock (or ...
1
vote
1answer
25 views

Strange thing about mongodb-erlang driver when using replica set

My code is like this: Replset = {<<"rs1">>, [{localhost, 27017}, {localhost, 27018}, {localhost, 27019}]}, Conn_Pool = resource_pool:new (mongo:rs_connect_factory(Replset), 10), ... ...
0
votes
1answer
30 views

ChicagoBoss rejects user as a model name

So following this tutorial: https://github.com/evanmiller/ChicagoBoss/wiki/An-Evening-With-Chicago-Boss Everything works like a charm except that I can not use "user" as a modelname. A minimum ...
0
votes
2answers
62 views

How can I handle Account Number in erlang?

I'm making Bank Account Management system using ETS which will also hold current and savings account, I'm unable to figure it out that how can I generate and retain the series of account numbers since ...
3
votes
2answers
80 views

About Erlang function, especially the function's identifier

I have a question about Erlang function. See the code in Erlang shell: 1> F1 = fun() -> timer:sleep(1000) end. #Fun<erl_eval.20.111823515> 2> F2 = fun() -> io:format("hello ...
1
vote
1answer
42 views

ChicagoBoss doesn't seem to be saving the right values into MongoDB

So I've worked my way through an evening with ChicagoBoss. I am now currently trying to wire up ChicagoBoss with MongoDB to build an app with it (and learn two new technologies I've been eyeing in the ...
0
votes
1answer
19 views

Trouble getting mongodb_erlang driver to work

I am attempting my first foray into writing to mongodb from erlang and came across suggestions to use the mongodb_erlang driver found here. However, I have created a very simple module similar to one ...
0
votes
2answers
51 views

Two tables with different names and using the single record cannot be created, how can I implent this?

I'm trying to create two tables using the same record, with two different names, but it creates only any one of them or sometimes throws an exception. Following is the code from my record file: ...
2
votes
2answers
88 views

How to format an erlang float into an integer (without decimal point)

I need to produce a String that will be later printed and cannot have a decimal point in it. For that I am trying to use the io_lib:format module in Erlang, but I am uncertain of what is the ...
0
votes
0answers
74 views

Node.js/ejabberd/Tornado comparison under millions of open connections [closed]

We are planning to build a full-fledged chatting application (1 ot 1, group chats, 1 to 1 voice chat, group voice chats) to be used by millions of users, and we are comparing ejabberd, Node.js, and ...
1
vote
1answer
49 views

OAuth2 library for Erlang

In my project I need a client OAuth2 library. The project is written in Erlang. What are the options for the language? PS I am a newbie in Erlang, so documentation/examples are a must.
5
votes
2answers
120 views

Erlang: what is this process identifier in the form of {from, Pid, Ref}?

I am now facing a problem. when i check the erl_crash.dump, i found some stuff as below: =proc:<0.19275.17> State: Scheduled Spawned as: proc_lib:init_p/5 Spawned by: <0.18723.17> ...
1
vote
2answers
81 views

How to mock objects in Erlang using Meck?

Okay, I'm using Meck and I'm lost. My first language (that I've been writing for about 7 months) is Ruby, so I can't seem to wrap my brain around Meck mocking yet. I do get Ruby mocking though. ...
1
vote
2answers
67 views

How do I install meck with my Erlang project?

I created my first Erlang project. It's a simple secret code game. I'm trying to avoid OTP at all costs because it seems REALLY confusing and my mentor thought it wasn't necessary to use it this go- ...
0
votes
2answers
74 views

Erlang gen_tcp missing packets?

I'm developing a mail client adapter for Erlang. I'm having issues when I try to perform a fetch command, Erlang isn't able to get the body's content. This is output from my terminal, when I'm trying ...
1
vote
2answers
92 views

Select every second row in Mnesia?

I have a large table in Mnesia and because of various reasons (not important here, say that I am executing the select remotely and the result has to be send over network using some 3rd party ...
3
votes
1answer
69 views

Erlang: Is there a way to “inherit” in a -spec?

Is there a way to "inherit" specifications in a -spec in Erlang? Let me give an example: I'm writing a typical convenience function like: start_link(Opts) -> gen_server:start_link(?MODULE, ...
0
votes
0answers
34 views

How to integrate Chicago Boss and Webmachine ?

I just want to develop a RESTful api server with webmachine, but i want to use chicago boss's tools in the same time , Does anyone can help me ?
2
votes
1answer
70 views

Displaying EUnit code coverage in Emacs

I am using Rebar to build my erlang project and want to integrate it more tightly with Emacs. I found that if I add {cover_print_enabled, true}. to my rebar config file I get code coverage in the ...
0
votes
2answers
110 views

How to get Erlang modules to talk to each other?

I'm building a simple console game in Erlang. I've been writing a few Erlang modules and tests for the past 2 days and everything is working correctly (in the individual modules). I'm confused as to ...
0
votes
0answers
42 views

Problems with compilation erlang during instaling Cloudfoundry v1 on ubuntu 12.04

I am tryin to install CF v1 on ubuntu 12.04 and faced with problem during compilation erlang R14B01: heart.c: In function 'do_terminate': heart.c:688:10: warning: ignoring return value of 'system', ...
-4
votes
0answers
75 views

Why this Erlang code works about one minute on my machine? [closed]

Why this Erlang code works about one minute on my machine? On Pascal something likes this tooks less then second on my machine. What I can do to speed up it? -module(slow). -export([slow/0]). ...
1
vote
1answer
33 views

Receive after result not returned

Given a function: %% @doc Retrieves client's state. -spec(state(pid()) -> atom()). state(Pid) when is_pid(Pid) -> case process_info(Pid) of undefined -> undefined; _Else ...
0
votes
2answers
92 views

Arrays implementation in erlang

My question is, how are arrays implemented in Erlang, as opposed to lists. With immutable types doing things like, move ([X | Xs], Ys) -> [X | Ys]. Ls = move([1,2,3], [2,3,4]) would take ...
3
votes
2answers
106 views

Which is more efficient in Erlang: match on two different lines, or match in tuple?

Which of these two is more efficient in Erlang? This: ValueA = MyRecord#my_record.value_a, ValueB = MyRecord#my_record.value_b. Or this: {ValueA, ValueB} = {MyRecord#my_record.value_a, ...
0
votes
1answer
58 views

Output data of Erlang List as a HTML in Yaws

Have a look at my index.yaws file below <html> <body> <h4>Data:</h4> <erl> out(Arg) -> Data = utilities:get_raw_data(), ...
0
votes
1answer
51 views

erlang- how to compile&load external module within a code

I want to compile&load mod.erl from test_mod.erl i tried to do this: -module(mod_test). -export([test/0]). test()-> compile:file(mod), mod:start(). but if its not ...
1
vote
1answer
94 views

Erlang ring controller process related

I am new at Erlang, and I have the following homework-problem to solve: A "control" process has to offer a user function go(N,M) that generates a lists L of M random integer numbers in {1,2,...,M}, ...
0
votes
2answers
77 views

Beginners Erlang - hello_world

I have a similar problem to the this: -module(hello). -export([hello_world/0]). hello_world() -> io:fwrite("hello, world\n"). Result: (hello_world@PC)8> hello:hello_world(). ** exception ...
1
vote
2answers
65 views

Gproc how to get the process id of a registered process?

How can I get the process id of a registered process using gproc:- I registered a process using gproc:reg({p,l,myroom}) Now, I am using erlang:start_timer which expects either the Process Id or ...
2
votes
3answers
112 views

What should and should not be in an Erlang header (.hrl) file?

I'm a bit confused on what an .hrl file should be used for. It's my understanding that .hrl files can contain any valid Erlang code and that using the -include directive will essentially insert the ...
0
votes
1answer
107 views

Erlang tcp server/client sending messages

I'm currently writing a simple server which will work with clients connecting and then talking with eachother where the server acts as an intermediary. The setup is: Server starts 2 Clients ...
0
votes
1answer
52 views

ejabberd offline_message_hook not called

I'm trying to get my ejabberd server to send offline push notifications by using a custom offline_message_hook module. The problem is the hook never seems to get called. I've tried setting the ...
0
votes
2answers
134 views

Please help me write for-loop in Erlang

How shall I write the method in Erlang for_loop_with_index_and_value(F, L) which is the analog of loop in Go for index, value := range array { F(index, value) } I have read foreach loop with ...
0
votes
1answer
81 views

Consuming from queues based upon external event (event queues)

I am running into a use case where I would like to have control over how and when celery workers dequeue a task for processing from rabbitmq. Dequeuing will be synchronized with an external event that ...
0
votes
1answer
31 views

Why does my successful streaming response in Webmachine have the status code 500?

The following code is the full source of a webmachine resource. The expected behaviour is that the streaming response should be a 200, and should be a string of specified length, entirely composed of ...
-3
votes
2answers
95 views

Solving the system of linear equations in Erlang [closed]

Is there any realization for solving the system of linear equations in Erlang? I'm new to this language.
-8
votes
1answer
96 views

Please help me construct array of integers in Erlang [closed]

I am new to Erlang. Help me, please. How can I create array of integers in Erlang? How can I do for-loop over this array? How can I modify elements and so on?
1
vote
1answer
93 views

Erlang string comparisons aren't working

I've been stumped just trying to compare two bits of data for hours. This is essentially what i've written.. find_client(Search, [Client|Client_list])-> {Name,Socket} = Client, ...
0
votes
1answer
78 views

how can I get StateData and replace this value in mod_muc_room

I wanna add a possibility to ejabberd-2.1.12 to be invisible in MUC via presence "invisible" (I know that in 3.x.x versions of ejabberd this will be deprecated, - I'll do that for site via http-bind). ...
1
vote
2answers
133 views

Broadcasting message to all connected users using websocket (Erlang, RabbitMQ, Websocket, Gen_bunny, Cowboy)

I am trying to integrate websocket chat using ERlang, Cowboy, Websocket and gen_bunny. I am able to get them work independently. Browser -> Cowboy websocket chat (Works) Erlang and RabbitMQ AMQP ...
0
votes
1answer
71 views

Why are ETS tables not garbage collected?

I'm learning Erlang so this is a question to improve my understanding of the Erlang design choices. Why are the ETS datastructures (dictionary/tree) treated so differently to the Erlang built-in ...
1
vote
2answers
85 views

start erlang application from command line

I have an erlang application, compiled with rebar. Normally I start it with like this: application:start(myapp). from inside the erl shell. Could anyone tell me how to start it like a normal ...
0
votes
1answer
49 views

initial process in erlang process ring won't quit

I have written the following code: -module(ring). -export([start/3]). start(1, 1, Message) -> %special case, no new processes to be launched io:format(" Start/3, branch 1~n~n"), ...
1
vote
1answer
159 views

Current state of multi-machine distributed Clojure? [closed]

There seems to be a few leading horses in the "what is the best language for developing multi-machine distributed concurrent apps": Go, Erlang, Clojure, Scala, and possibly others such as ...

1 2 3 4 5 68