views:

212

answers:

1

Hi, does anyone know of a good database based Priority Queue implementation?

I'm dealing with large amounts of data so keeping it all in memory is unfeasible.

Thanks!

+1  A: 

Maybe you want a Message Queue?

There are several good ones, both proprietary and open source. For a simple API, check memcacheq, for a more complete, high-performace, take a look at RabbitMQ

Javier
No, I need a queue, sorted by priority, but instead of storing everything in memory I want to store it on a database.
Pelayo Besa
+1 for memcacheq
ozone