zend-queue

Infrastructure for Running your Zend Queue Receiver

I have a simple messaging queue setup and running using the Zend_Queue object heirarchy. I'm using a Zend_Queue_Adapter_Db back-end. I'm interested in using this as a job queue, to schedule things for processing at a later time. They're jobs that don't need to happen immediately, but should happen sooner rather than later. Is there a...

Use Zend_Queue without Zend Server

Is it possible to use Zend Queue without to have Zend Server installed on a server ? ...

Getting a Reference to a Zend_Application's Config Object

Is there a helper method/object/methodology for getting a reference to a Zend_Application's config resource? I know I can do something like $config = new Zend_Config_Ini($file, $environment); but that's going to reload/parse the config file. I'm looking for a way to peek at the given configuration value for a running Zend_Applicati...