An open source asynchronous task queue based on Redis, developed in Python, allowing tasks to run asynchronously outside of the request/response cycle.
Async is an open source asynchronous task queue / job queue based on Redis, developed in Python. It allows you to run CPU and IO intensive tasks asynchronously outside of the request/response cycle.
Some key features of Async include:
Async is a great choice for offloading intensive work from web applications, scheduling cron jobs, distributing periodic tasks, processing large volumes of data, and other asynchronous workloads. It handles the queueing, dispatching, and retrying of tasks gracefully.
Here are some alternatives to Async:
Suggest an alternative ❐