Job queue as SQL table with multiple consumers (PostgreSQL)

后端 未结 7 852
醉梦人生
醉梦人生 2020-12-04 09:34

I have a typical producer-consumer problem:

Multiple producer applications write job requests to a job-table on a PostgreSQL database.

The job requests have

7条回答
  •  误落风尘
    2020-12-04 10:17

    You might want to look at how queue_classic does it. https://github.com/ryandotsmith/queue_classic

    The code is pretty short and easy to understand.

提交回复
热议问题