Search Results

2
votes
2answers
156 views

erlang - how can I match tuple contents with qlc and mnesia ?

Hi. I have a mnesia table for this record. -record(peer, { peer_key, %% key is the tuple {FileId, PeerId} last_seen, last_event, uploaded = 0, download …
2
votes
1answer
85 views

In erlang/OTP how do I start appmon to monitor an existing node?

Hi. I have a running erlang application, launched with this command line erl -boot start_sasl -config config/cfg_qa -detached -name peasy -cookie peasy -pa ./ebin -pa ./ebin …
5
votes
3answers
191 views

Erlang: how can I reference an anonymous function from within the body?

In Erlang is there a way reference the currently executing function)? That would be useful to …
2
votes
3answers
225 views

Eventually consistent mnesia database with erlang. Best practices anyone?

Hi. I'm writing a bittorrent tracker in erlang. Given the nature of the service, I won't need absolute consistency (ie. a client can be perfectly happy with a slightly outdated list of peer …
8
votes
3answers
274 views

How do I do dependency injection and mocks in erlang?

Hi. When writing code in Java, it is very helpful to embrace composition and …
1
vote

What’s a good IDE for Erlang programming?

I use Erlide on eclipse (http://erlide.sourceforge.net/). Pros: Syntax highlight, autocompletion and suggestion all work well. Du …
3
votes

In erlang/OTP how do I start appmon to monitor an existing node?

Found. As always with erlang, to have two nodes speak to each other, you need to ping: 1> net_adm:ping(other_node_you_want_to_monitor). pong 2> appmon:start(). {ok,< …