-
-
Notifications
You must be signed in to change notification settings - Fork 575
Closed
Labels
Description
Deploying an app that accepts websocket connections. A client can send messages to the app through the websocket connection. For every message a client sends the app would query a database and send the results back to the websocket in batches of 10000 rows.
Since the data can have over a million rows. A persistent websocket connection needs to be maintained between the client and app, in order for all the batches to be recieved.
Any suggestions, on a client maintaining such a persistent connection? Does this pattern make sense? Is this a good usecase for python websockets?