Search code examples
phpfifo

A persistent FIFO queue implementation on PHP


I need a FIFO queue implementation on PHP. I know that it's not so difficult but the problem is that, this queue must be stored on somewhere else such as memcache. I'll process this queue by cron jobs.

I found MemcacheQ, but is there any other solution?


Solution

  • I think that you can use MEMQ that is a simple php class that implements a queue using memcache as data store.