Elixir is a functional meta-programming aware language built on top of the Erlang VM. It is a dynamic language with flexible syntax with macros support that leverages Erlang's abilities to build concurrent, distributed, fault-tolerant applications with hot code upgrades.

learn more… | top users | synonyms

0
votes
1answer
89 views

How to fit non-event driven processes into supervision tree?

I want to be able to spawn a lot of processes that process data and fit them into a supervision tree. However all default behaviours, namely gen_server, gen_fsm, and gen_event, are event-driven. ...
3
votes
1answer
29 views

How to clear screen in iex?

In irb and many other interactive shells, I can do a Ctrl+L to clear the screen. What's the equivalent in Elixir's iex ?
2
votes
1answer
105 views

Elixir cube function

I'm learning Elixir and trying out the square and cube function. I'm puzzled as to square works while cube blows up? square = &1 * &1 square.(5) Works fine while cube = &1 * &1 * ...
4
votes
2answers
229 views

Looking for persistent, distributed, worker queue for erlang

Before re-inventing the wheel, I'm looking for pointers to open source projects that meet these requirements. implemented in erlang though go or C are possible, if there isn't too much baggage ...
0
votes
1answer
80 views

Can't get supervisor to work

I'm trying to get my head around supervisors in OTP and such in erlang (although I am using elixir) and I can't seem to figure out why the main supervisor tree won't start. I am making a http server ...
0
votes
1answer
112 views

Can the `erl -make` command be extended to do things other than compiling .erl files?

I wanted to integrate Elixir into our project, and the good old codes don't use rebar, so I think writing the rules for building .ex files into Emakefile may be a good idea, yet the man page here ...
3
votes
1answer
153 views

How to call a method dynamically in Elixir, by specifying both module and method name?

I'd like to know what exactly a method name is in elixir: array = [1,2,3] module_name = :lists method_name = :nth # this not working module_name.method_name(1, array) # error, ...
1
vote
3answers
338 views

How do you create and load modules dynamically at runtime in Elixir, or erlang?

The basic scenario is this: I need to load text from a database, and then turn that text into a elixir module (or erlang module) and then make calls into it. The text is effectively the same as a ...