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
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
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
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
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
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
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
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
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 10 of 11 Posts
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.