Celery Working Limitations Updates

2024-08-22 Thread Muhammad Shariq Shafiq
Hello Dear Django Team Last month, I tried to do some task of django which primarily based on scheduling of accessibility with time and role based authnetications I used celery for that scheduling but failed and for 2 days i tried for it by changing my code logic and urls but all in vain Then

Re: Celery Working Limitations Updates

2024-08-22 Thread 'Ken Whitesell' via Django developers (Contributions to Django itself)
I think you're misinterpreting what you're reading from your search results. This is a Celery issue, not a Django issue. Quoting from the Celery docs at https://docs.celeryq.dev/en/stable/faq.html#does-celery-support-windows - Does Celery supportWindows?

Re: Celery Working Limitations Updates

2024-08-22 Thread Cory Zue
I agree with Ken, that this a Celery issue, not a Django one. But while we're here, as far as I know Celery still runs fine on windows. It is not officially supported, and the default pool no longer works, but if you run celery with --pool=solo (in development) or --pool=gevent (in production) it

Re: Celery Working Limitations Updates

2024-08-22 Thread Muhammad Shariq Shafiq
Ok Ken thank you for clarifying I think that blog and research would be misleading. Sorry for saying all that. I love Django as it's my core tech stack Regards On Thu, Aug 22, 2024, 7:39 PM Cory Zue wrote: > I agree with Ken, that this a Celery issue, not a Django one. > > But while we're here