-- Justin Plock <[EMAIL PROTECTED]> wrote (on Sunday, 02 March 2008, 11:10 PM -0500): > Besides my S3 class, I also wrote a queuing class which interfaces with > Amazon SQS. I was thinking of submitting a proposal for a "Zend_Queue" > which had various backend adapters (SQS, Database, Files, Zend_Cache). > Would anyone have a use for this?
Definitely; I've written queueing systems a couple of times before. They're great for ensuring that issues with subsystems don't affect the frontend (e.g., if there's an issue sending a mail, you can keep queueing it until it sends; or if a service is unavailable, you can keep queueing the request until it's healthy again). Another backend adapter to consider is the Zend Platform Job Queue. -- Matthew Weier O'Phinney PHP Developer | [EMAIL PROTECTED] Zend - The PHP Company | http://www.zend.com/
