I have an elixir/OTP application running in production, that was started with mix phoenix.server. It has several processes that hold state. One of these is a stash, implemented as Agent, that currently have a state that I would like to manually change, without stopping the whole application. Once I'm in a iex session inside the application it will be trivial, but I don't know if such option is eve
