Symfony and Heroku worker: can I use the database as communication mechanism between the front-end and the background worker?
问题 I need an Heroku's Worker to do some background tasks. Now, reading the article Background jobs with workers in PHP , I found that the architecture designed in the article makes use of RabbitMQ as messaging system between the web dyno and the worker dyno. But I don't want to use RabbitMQ as it is really too much complex at this stage. So, as communication mechanism between web dyno and worker dyno , I'd like to use one of these two alternatives: Simply the database (largely my best choice :P)