RQ (Redis Queue) lets you queue Python functions to run as background jobs. You connect to Redis/Valkey, define your task function, and then use `queue.enqueue()` to send it off. Workers can then pick up and execute these jobs, making your main application more responsive.
Handle background tasks in your Python apps using Redis.
Python developers needing to offload time-consuming or blocking operations from their web requests or main application flow.
Not enough data yet. Star history will appear after a few days of tracking.