pg boss:使用PostgreSQL像老板一样在Node.js中排队作业 源码
像老板一样使用PostgreSQL在Node.js中排队工作。 async function readme ( ) { const PgBoss = require ( 'pg-boss' ) ; const boss = new PgBoss ( 'postgres://user:pass@host/database' ) ; boss . on ( 'error' , error => console . error ( error ) ) ; await boss . start ( ) ; const queue = 'some-queue' ; let jo
用户评论