Open
Description
With multiple GatewayServer deployed and different users connected to different GatewayServer, what is the best practice under the current framework when a user connected to gatewayServerA wants to push a message to a user connected to gatewayServerB?
Is the following method feasible
- Create a sessionServer to manage all sessions.
- When users connect to different GatewayServer, they will be registered through rpc calling sessionServer.
- To actively push information to users, need to call the sessionServer through rpc instead of pushing information to gateServer directly.