stjefim
Hello!
I want to “save function” (module, name, arity) to the database to be able to call it later, potentially after BEAM was restarted. My plan is to use Functions.capture(module, function_name, arity) to be able to call the function after “loading” from the database.
How can I obtain module, function name and arity from a function capture (e.g. &MyModule.my_function/0) to “save function”? I have found Functions.info(fun) function, however, the documentation has a note saying that it should be used for debug only. What are the reasons it is debug only? What are the alternatives?
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
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
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
Not sure I follow. You have the module, the function name and the arity beforehand, why use the result of
Function.captureresult at all? Why not cut out the middleman and just store those 3 pieces in the DB?stjefim
Not sure if I understood you correctly, but here is the clarification. I plan to use
Functions.captureto “load function” from the database. My problem is how to “store function” to the database from the Elixir code, i.e. I want to write a functionfunction_to_string(f)which can be called like thisfunction_to_string(&MyModule.my_function/0)and would return[module: "MyModule", name: "my_function", arity: 0]"and this result I would store in the database.So to answer your question - I agree I just need to store these 3 pieces in the DB, however, how to obtain them from a function capture.
bartblast
Hey @stjefim, are you aware of Kernel.apply/3?
derek-zhou
I don’t think there is a general solution as function can be anonymous. Also, storing function in a db may not be the best idea. Code will change, db record last for a long time. Also, think of the security implication.
stjefim
Thank you, it will be useful after “loading function” - no need to do
Functions.capture.dimitarvp
You want to store the function’s bytecode itself in the DB?
I still don’t get your requirement.
stjefim
I agree with all your points:
stjefim
No, I will not store byte code in DB. My requirement is to convert function capture, e.g.
&MyModule.my_function/0into module name as string, function name as string and function arity as integer.derek-zhou
That’s not possible. Because you can’t turn a function value back to MFA, just like you can’t turn a value back to the variable name.
You can store the function value itself though:
However, as I mentioned above, that’s a big foot gun.
jswanner
The underlying Erlang function docs says it’s “mainly” for debugging:
That said, the
:telemetrylibrary uses it to verify you supply an external function as a handler.