gavinwahl / django-postgres-queue

A task queue for django
BSD 2-Clause "Simplified" License
120 stars 14 forks source link

Documentation #11

Closed HiralBarot1512 closed 4 years ago

HiralBarot1512 commented 4 years ago

Hi there, Is there a way to find following things from queue: 1) Oldest message from queue? 2) Queue Size

gavinwahl commented 4 years ago

Yes, you can query the dpq_job table with the Django ORM or with SQL.

SELECT * FROM dpq_job ORDER BY created_at ASC LIMIT 1 and so forth