slouchpie

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…

Showing Posts 1 to 10

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

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

slouchpie OP

Yes, the runtime memory is unaffected.
I’m wondering if there are 2 copies during compile time.

The same article says:

Therefore if you read the same attribute multiple times inside multiple functions, you may end-up making multiple copies of it. That’s usually not an issue, but if you are using functions to compute large module attributes, that can slow down compilation.

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

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

slouchpie OP

Perfect, thanks

NduatiK

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

@var1 1+1
@var1 1+2
pdgonzalez872

pdgonzalez872

@benwilson512 as a tangent here, could you please teach me how to verify this? I’d love to know how.

lud

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 @attribute is 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

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:

@money %{amount: 0, currency: :DOGE}

def reset_global_debt do
  money = @money
  for human <- Earth.list_humans() do
    update_financial_record_for_human(human, %{
      "total_amount" => money.amount,
      "base_currency" => money.currency
    })
  end

you may even want to do

@money %{amount: 0, currency: :DOGE}

def reset_global_debt do
  amount = @money.amount
  currency = @money.currency

  for human <- Earth.list_humans() do
    update_financial_record_for_human(human, %{
      "total_amount" => amount,
      "base_currency" => currency
    })
  end
slouchpie

slouchpie OP

I don’t understand this at all, sorry.
How are the elements of Earth.list_humans() known at compile time?

eksperimental

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.

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
RemyXRenard
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
velrest
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
samoloth
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
asweet-confluent
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 Top

JesseHerrick
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
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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

Latest on Elixir Forum

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews