chrisboulton / php-resque

PHP port of resque (Workers and Queueing)
MIT License
3.43k stars 759 forks source link

Datastore Adapter #202

Closed eddiejaoude closed 10 years ago

eddiejaoude commented 10 years ago

Redis is not always available. Would be great to use something like Zend\Cache

danhunsaker commented 10 years ago

That would be well outside the scope of this project. Zend\Cache is also not always available, but more importantly, it works very differently than Redis, so porting the code for this project, which is designed around the way Redis works, to anything else would be an immense amount of work, and would make this a very different project altogether, no longer paralleling the original Resque (though PHP-Resque has lagged behind developments in Ruby's version the last few years).

What you're looking for might be Zend Job Queue, actually. There are a number of alternative job queuing engines available for PHP - one of them may fit your use case (no Redis access) better than PHP-Resque does.

Best of luck!

eddiejaoude commented 10 years ago

Thank you for the quick & detailed response. PHP-Resque is such a good project, it is ashamed it has fallen behind over the last few years.

Thanks.