Writing Fast Elixir
Learn about the different optimization techniques and how lazy evaluation works.
We'll cover the following...
Looking at optimization techniques
One of the first general rules for optimizing code states: “You can’t optimize a bad algorithm.” The most significant performance gains in our code will often come from better algorithms. Efficient algorithms can make up for limitations in computing power.
Note: A comprehensive introduction to data structure and algorithm design is outside of the scope of this course.
Instead, this lesson will cover some basic tips to increase the performance of the Elixir code. This is simply an overview and is not meant to be a comprehensive guide for writing fast Elixir. ...
Access this course and 1400+ top-rated courses and projects.