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

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
subsaharancoder
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
New
jaybe78
Hello, I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter). The diffic...
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
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
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
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews