Curious about possible way to access GenServer process across Node

I writing a POC of using GenServer process to keep a lot of state but want other Node the start from same codebase can access/use state that first Node collect.

This article explores a bit of Distributed Erlang. It communicates across agents (which are basically GenServers) in different nodes: https://howistart.org/posts/elixir/1. Maybe it is a good starting point?

2 Likes

Ah! Thank, I really have to check it :slight_smile: