Forums

Async work queue

I implemented a work queue using this approach: https://kirit.com/Django%20Async/Using%20Django%20Async%20from%20the%20command%20line ... but very soon I consumed the available CPU seconds. How are these seconds computed exactly?

Despite the advice (eg https://help.pythonanywhere.com/pages/AsyncInWebApps/), it seems the background queues are hardly usable?

CPU seconds are basically the amount of processing time (not wall time) it takes for your script to run. Are your work queues doing something that takes a lot of processing power to run?