I'm building a real time iot Django server. My server should connect with multiple iot devices at the same time. I know that through a django channel I can serve a client. Is it possible for a django channel to handle multiple clients at once?If not do I need to create multiple websockets in order to handle multiple clients at the same time?
-
1Yes it can handle multiple clients just like normal HTTP servers can handle connections from different client browsers and mobile devices. Of course, it creates a websocket connection with each clientKen4scholars– Ken4scholars2019-05-04 09:47:50 +00:00Commented May 4, 2019 at 9:47
Add a comment
|