I have a website that requires a shared priority queue with objects that store the IP of the user and other important user posted values.
I figured I could use a sql database, but since the priority queue isn't that big and is frequently updated, something like a cache would be more appropriate.
What tools could I use from the Zend framework? I want the shared priority queue to be consistent, of course, without data races and other concurrency related problems. Yet I still want a good performance.
Any ideas?