slouchpie
Greetings comrades,
According to: https://elixir-lang.org/getting-started/module-attributes.html#as-constants
Every time an attribute is read inside a function, Elixir takes a snapshot of its current value.
My question is:
In this function:
@money %{amount: 0, currency: :DOGE}
def reset_global_debt do
for human <- Earth.list_humans() do
update_financial_record_for_human(human, %{
"total_amount" => @money.amount,
"base_currency" => @money.currency
})
end
end
do 2 copies of @money get created, since it is “read” twice?
I hope not…
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
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
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
Other Trending Topics
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
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
No. The value is basically a static constant, and in fact won’t even take up memory in the process like a normal map, since it will be just a pointer to the shared constant pool.
slouchpie
Yes, the runtime memory is unaffected.
I’m wondering if there are 2 copies during compile time.
The same article says:
benwilson512
It is as if you hand typed that map in two places. This can affect compile times, but it generally requires very large constants to be an issue.
slouchpie
Perfect, thanks
NduatiK
To add onto the previous answer. The cost occurs when you make a change.
The following would be calculated twice. If we were doing expensive or numerous changes, it would affect the time taken to compile
pdgonzalez872
@benwilson512 as a tangent here, could you please teach me how to verify this? I’d love to know how.
lud
If you can read erlang you can use mix decompile to turn your compiled module into erlang source. And you will see that whenever an
@attributeis used, the litteral value is present in the source.Now if you cannot read erlang I guess you will recocgnize your own data enough to verify too.
eksperimental
the copies are inside your def.
Note that it is not two copies only,but 2 times the elements of
Earth.list_humans()if you don’t want to create copies, you may want want refactor your code:
you may even want to do
slouchpie
I don’t understand this at all, sorry.
How are the elements of
Earth.list_humans()known at compile time?eksperimental
Sorry, You are right. I was wrong about the part about 2 * number of Earth.list_humans(). It is just two copies.
The rest still applies. as you save from duplicating the content of @money, and access the keys of the map for every element in list_humans at run time.