PHP Classes

My implementation

Recommend this page to a friend!

      PHP Classes blog  >  How to Use Queue To S...  >  All threads  >  My implementation  >  (Un) Subscribe thread alerts  
Subject:My implementation
Summary:Reducing long wait times by implementing queues
Messages:2
Author:Gerry Danen
Date:2016-03-09 14:41:05
Update:2016-03-10 19:11:08
 

  1. My implementation   Reply   Report abuse  
Picture of Gerry Danen Gerry Danen - 2016-03-09 18:55:40
My implementation of queuing grew out of a need to reduce the wait time for long reports, and the result was much like this.
In addition to the queue table in the article (which is very good, Alexander), I needed a table with report parameters.
I also needed an interface that would remove items from the queue, in case a report failed.
I hope you package up the code so people can try it out themselves. I find it very useful!


  2. Re: My implementation   Reply   Report abuse  
Picture of Alexander Skakunov Alexander Skakunov - 2016-03-10 19:11:08 - In reply to message 1 from Gerry Danen
Thanks Gerry!