Remix.run Logo
bodhi_mind 3 days ago

There’s also Django channels which is pretty sweet for certain tasks, especially websockets.

I use a combination or channels and celery for a few projects and it’s works great.

pdhborges 3 days ago | parent [-]

The problem with channels is that if you need to touch the ORM you will have to use a sync_to_async call which will block the event loop.