Jun 19, 2023
@Salil, normally socket applications use reverse proxy and load balances that support sticky sessions which ensures that all requests from the same user reach the same server instance.
Even without that, it should work if your data store is distributed. Ideally server instances should not maintain state across multiple requests.
Let me know if that helps. :)