in reply to Fast queue logic
The fastest way is to write a queue management service which keeps the queue entries in memory. Clients access the service via socket. That makes polling quick, but isn't particularly fault-tolerant. You need to persist the queue at some point. I'd start off with files, and see if that's good enough.
|
|---|