DEV Community

Discussion on: Symfony 4 is the new Boss in PHP Framework

Collapse
 
wolfyj profile image
Anton Titov

RoadRunner has integrated Queries, you don't even need a framework for it anymore.

Collapse
 
bcalik profile image
Burak Çalık • Edited

Roadrunner is just a replacement for nginx+php-fpm pair. You still have to write your own queue implementation in your application, you won't have features like failed jobs, delayed jobs, max attempts, expirations, chained jobs etc. You have to waste many hours.

Thread Thread
 
wolfyj profile image
Anton Titov • Edited

It is not just a replacement and it does have most of the features you mention. It also have automatic reconnects for queue brokers which it near to impossible to achieve in php. Check this repo: github.com/spiral/jobs

It can also run queue in memory, so you don’t need any broker.