miguelszerman
In the Enumerable chapter of the Elixir getting started guide there is a section called Lazy vs Eager. However, it never explains what Lazy or Eager means in the Elixir context.
There is an external mini-explanation on educative.io:
Enum, being eager, produces a whole list of numbers after each operation in the script until the result is reached. Conversely, Stream, being lazy, creates a stream that represents a function without executing it straight away.
A better explanation with the trade-offs, common use cases, and links to further resources would be nice to include in the guide.
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ai
- #ecto-query
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
I don’t know about links and I am not a computer scientist by education but as a seasoned programmer I can offer you the following explanations.
— Eager loading —
Everything gets loaded in memory right away. Example 1:
File.read!loads the entire file into a single binary (string) and then passes it toCSV.parse_stringwhich also works with an entire binary. That’s eager loading – everything is there to be used in one go.Example 2:
Here you don’t just work with one list of 1000 elements; you work with four of them in total since each
Enum.maporEnum.filterproduces a new list that’s also loaded entirely in memory. Meaning the memory for all four lists will be allocated and used until they are thrown away.Something like 95% of the time you don’t care and it’s fine. But every now and then this is an awful idea because you don’t know beforehand how many records do you have to process in advance. Which brings us to…
— Lazy loading —
Stuff that you work with gets loaded in memory in chunks / batches. You never load the entire thing in memory.
Let’s take the Example 1 from above and turn it into lazy-loading code.
Notice how we replaced
File.read!withFile.stream!andCSV.parse_stringwithCSV.parse_stream. You should read quickly on these functions but basically they operate with anEnumerablethat allows them to pull data on demand (in batches). OK, maybe not the best example because you have to defer to documentation for an external library so let’s go to Example 2:The
Streamfunctions are usually identical with those with the same names fromEnumand do the same thing, only they never operate with the entire list given. In this case you only work with two lists in total: the original one and the resulting one which is produced by feeding a stream toEnum._to_list(NOTE: you can merge the last two steps by just doingEnum.filter(& &1 / 2 == 0)and it will have the same effect, but I opted for slightly longer code for illustrative purposes).The very good thing about this approach is that the original list doesn’t even have to be loaded into memory as well. Example 3 and that one is much closer to real-life scenarios:
I and many others have successfully used code like the above to process dozens of millions of DB records, while the code never loads more than 1000 at the same time.
Now this is not super formal or strictly adhering to the scientific definitions, surely, but is more like an answer to the question: “What does eager / lazy loading means when programming [in Elixir]?”.
TL;DR – it’s usually a protection from bursty memory loads. And it can sometimes slow down a competing
Enumimplementation if you go too micro (on my machines I never useStreamunless I have to operate with more than 3000-4000 records at a time).josevalim
Your description is great. Can you please submit a PR to add it to the guides?
dimitarvp
Swamped with work and this post was a bit of an anxious procrastination, admittedly.
I promise I’ll find a time slot in the next several days and will PR this – do you mind references to external libraries, or you are OK with them?
josevalim
Apologies for the confusion, your description was great. However, I was eyeing @miguelszerman’s summary, because it is small and therefore a perfect fit for an introductory guide.
Good news is that it is less work on your plate!
dimitarvp
Hahaha. I got greatness-blocked!