halostatue
Some years ago, I switched my case statement handling to something like this:
case some_operation() do
{:ok, _} = ok -> ok
{:error, reason} -> # do something with reason
end
I did this because I recalled something about an unnecessary tuple allocation improvement that José made in Erlang itself. Is this over-optimization in modern Elixir 1.13+ / Erlang 24+? Does it still make sense to do that, or would writing the (potentially clearer) version be OK now?
case some_operation() do
{:ok, value} -> {:ok, value}
{:error, reason} -> # do something interesting with reason
end
Trending in Questions
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
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!
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
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
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
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 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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #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
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
If I remember correctly both
:okidioms compile to the same bytecode and this has been true for a while now. Can’t remember since which OTP version though.kartheek
Either way fresh memory is not not allocated from for value. It just points to value object which was originally created in {:ok, value}.
both variables value will point to same value as the data has not changed. Only fresh tuple is created here is my understanding.
These small optimisations won’t result in much difference when compared to memory leaks and overflowing queues. I write code in a more readable way rather than worry about optimising. I believe in below quote
Everyday tooling is becoming intelligent and computing is becoming cheaper - so the optimisation for limited resource environments is not needed as of today is what I believe.
halostatue
It’s the tuple creation that I’m concerned about. Sure, it’s cheap, but it’s not zero. Similarly, when I only care about what the shape of the
{:ok, value}result is, I do this:If the code generation for
{:ok, value} -> {:ok, value}now avoids the creation of the second tuple (because it’s recognized as a duplicate), then the optimization is unnecessary. If it doesn’t, then I’d rather stick with the existing pattern, because I do have such things in tight loops where tuple creation might not be idealThe opposite case of the
error -> errorshape above isn’t always possible:kartheek
You will find answer benchmarking your code using benchee or similar tool.
There are some pitfalls in testing individual scenarios unless some special algorithm is being benchmarked:
My belief is true test for a project as whole is production deployment. If I find an issue in production I will profile and see why resource utilization is high - bottle neck in resources, code, etc.
BartOtten
Just to chime in: when this level of optimization is what you need, you might check out a different language or use something like rustler. After all: the mass result of this nano-optimization is thousand times gone as soon as you do something else slightly off.
benwilson512
I believe Core Erlang Optimizations - Erlang/OTP shows that it optimizes to zero in this case. It’ll just reuse the tuple whether you write it out that way or not.
sezaru
You can also ditch the
casealtogether and usewith:Not sure if that will result in a more optimized code thought.
halostatue
Thanks. This is exactly what I was looking for.
halostatue
That will end up resulting in the same code, IIRC, since
withis a macro and sugar for nestedcaseexpressions. In general, I only usewithif:cases.with.The moment that I need to treat non-ideal-path handling differently, the value of
withdrops immensely.dimitarvp
I feel jealous because I practically said the same thing but was utterly ignored.

Thanks for the link!