Can django channels scale to handle big traffic?
13:01 04 Jul 2018

I want to use django channels on an existing project to support websockets, but i'm having doubts about scalability i know daphne server can only handle so much opened connections

1-how many simultaneous connection can one daphne instance handle?

2-can it scale using a load balancer to be able to handle big traffic (let's say 100k simultaneous websocket connections)?

websocket django-channels