Elixir-lang.org has a new design
elixir-lang.org
Elixir-lang.org has a new design
1–10 of 141 posts
Re: Elixir-lang.org has a new design
#2Re: Elixir-lang.org has a new design
#3Re: Elixir-lang.org has a new design
#4Hoping Elixir continues to thrive. It is such a great language (and such a great language for AI coding too!)
Re: Elixir-lang.org has a new design
#5OT: I wish more funding & development effort went into BEAM itself on making it more performant.
Note: I’m not talking concurrency. I’m talking pure raw performance.
Seems like it’s been a one person show for over a decade on making it faster.
Re: Elixir-lang.org has a new design
#6Re: Elixir-lang.org has a new design
#7Elixir is great. OT: I wish more funding & development effort went into BEAM itself on making it more performant. Note: I’m not talking concurrency. I’m talking pure raw performance. Seems like it’s been a one person show for over a decade on making it faster.
Re: Elixir-lang.org has a new design
#8Re: Elixir-lang.org has a new design
#9Elixir is great. OT: I wish more funding & development effort went into BEAM itself on making it more performant. Note: I’m not talking concurrency. I’m talking pure raw performance. Seems like it’s been a one person show for over a decade on making it faster.
It’s pretty hard to make things like math faster for real world use cases in a bytecode interpreter.
You can get substantial performance improvements by using guards though. See what Wings3D does with is_float() everywhere in hot numeric-heavy code.