11 lines
389 B
Elixir
11 lines
389 B
Elixir
defmodule MessageServer do
|
|
@moduledoc """
|
|
MessageServer - a small system of two connected servers
|
|
|
|
The servers each own some users from which they accept requests.
|
|
If a request requires updating state of a user that is located on
|
|
another server, then the servers must communicate these changes
|
|
between themselves. Users only communicate with their “home” server.
|
|
"""
|
|
end
|