Support

Need help with QRush? Try one of these:

FAQ

Is Redis required?
Yes. Set REDIS_URL (e.g., redis://127.0.0.1:6379).
How do I protect the metrics panel?
Set QRUSH_BASIC_AUTH="username:password". The panel lives under /qrush/metrics.
How do I schedule a job?
Use enqueue_in(job, delay_secs) (e.g., enqueue_in(job, 60) for 60s).
What about workers and retries?
Start worker pools per queue; failed jobs retry up to a limit and can move to a dead list.
CSV export / endpoints?
From a queue page use “Export CSV” or call /qrush/metrics/queues/<queue>/export. Health at /qrush/metrics/health.
Actix required?
The example UI routes target Actix Web. The core queue/worker logic can be used anywhere with Tokio.

New to QRush? Start with Get started.