romenigld
I am doing the code gnome course (which the application is a Hangman) and I tried to start a module with Application which uses an Agent and is complainig this:
iex(1)> Dictionary.random_word
** (exit) exited in: GenServer.call(Dictionary.Runtime.Server, {:get, &Dictionary.Impl.WordList.random_word/1}, 5000)
** (EXIT) no process: the process is not alive or there's no process currently associated with the given name, possibly because its application isn't started
(elixir 1.13.0) lib/gen_server.ex:1019: GenServer.call/3
I tried to start with the atom mod: and start_module: on the file mix.exs
def application do
[
# mod: { Dictionary.Runtime.Application, [] },
start_module: { Dictionary.Runtime.Application, [] },
extra_applications: [:logger]
]
end
application.ex:
defmodule Dictionary.Runtime.Application do
use Application
def start(_type, _args) do
Dictionary.Runtime.Server.start_link()
end
end
server.ex :
defmodule Dictionary.Runtime.Server do
@type t :: pid()
@me __MODULE__
alias Dictionary.Impl.WordList
def start_link do
Agent.start_link(&WordList.word_list/0, name: @me)
end
def random_word() do
Agent.get(@me, &WordList.random_word/1)
end
end
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
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
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
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
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
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
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
- #ai
- #graphql
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
SirWerto
Hi,
try to put
I think you are not starting the application before calling it.
If you call
Mix starts the application that you are developing for you:)
romenigld
Hello @SirWerto,
this is not what I want to do.
If I try to run:
it work’s for me. But I want to start like Application.
romenigld
I tried your code:
but complains the same.
Thank you for reply!
SirWerto
Okey, you need to start a supervisor in you application start callback, here is the elixir tutorial about that. And start your server from the supervisor.
I am not totally sure if is possible to use an application without spawning a top level supervisor, but the normal behaviour is to spawn a top level supervisor an then start the other processs of your application from there.
derek-zhou
You can either use mix, as @SirWerto have suggested, or use a OTP release, as documented here
You need to tell us what exactly do you want.
jmbejar
Hi! Here is a list of changes that would make it work, with a few references to documentation. Hope it helps to have this running at least.
Please use
mod:which is the option documented here: Application — Elixir v1.13.4Here you’re missing the
use Agentline, so this module actually behaves like an Agent module. See: Agent — Elixir v1.12.3Also, the
start_linkfunction should accept one argument. You may change it to:Finally, you need to adjust here to pass an initial value to
Dictionary.Runtime.Server.start_link(...).With these changes the app should start when doing
mix -S iex. TheDictionary.random_wordinvocation should just work, without manually start the app from the iex session.Good luck!
romenigld
Hello this is not a release.
romenigld
Hello @jmbejar.
I put the use Agent but the same error complains and this don’t need an initial value on the Server.start_link because this is reading a file, so the initial value is a list of words.
joaoevangelista
You will also need to start a Supervisor on the start/2 callback instead of directly starting your Agent server, as per documentation:
eg:
And I think you will need to provide a
start_link/1or you could implement your own child_spec instead of relying on the convention of
{mod, args}tuple as presented on the variablechildrenjmbejar
I understand that you may not need to use the initial value argument, but it is a requirement to implement
start_link/1in your Agent module, otherwise, it won’t work. You can simply ignore that argument but it has to be in the function definition.