Re: Django channels scalling

2022-12-29 Thread Angel Galicia Sp
>From my point of view, You should avoid multi ws connections per client, the purpose of a ws connection is to be able to send data when something happens without a new user request, that being said... I think that the way DJ Channels is built makes it difficult to have just one connection per

Re: Django channels scalling

2022-12-21 Thread Divit Rao
Thanks mate On Wednesday, December 21, 2022 at 9:55:33 PM UTC+5:30 shahee...@gmail.com wrote: > Generally, as you may know, it is not very easy to get memory usage stats > on Unix/Linux without specialised tooling. > > However, in my experience, with default TCP settings, the kernel overhead

Re: Django channels scalling

2022-12-21 Thread Shaheed Haque
Generally, as you may know, it is not very easy to get memory usage stats on Unix/Linux without specialised tooling. However, in my experience, with default TCP settings, the kernel overhead plus whatever "typical" app overhead will not often exceed say 100 kB per connection. Now, we had original