There is an application on the Phoenix Framework.
There is a need for GenServer, which will check some values.
Validation of these values is started from the controller (a request comes from the client, the GenServer value checks, the client receives a response).
Once handle_call is synchronous, then what happens when 10 clients call 10 calls handle_call at a time? All 10 calls will be processed in parallel or in the order of the queue?