Priority queues
Posted: Mon Nov 09, 2009 2:36 pm
I have a "smart-FIFO" queuing problem with two kinds of information requests (IR's):
1) IR1 of highest priority has a min. processing time of 2 hours;
2) IR2 of lowest priority has a min. processing time of 1 hour;
IR1 requests need to be dealt with before IR2 requests.
Instead of having 2 different priority queues (one for each different priority and processing time), is it possible to handle this in a single FIFO queue? (E.g for 4 different priorities the Sketch will become really messy and I may loose out on competition with Enterprise Dynamics gurus in my company...). Thanks.
1) IR1 of highest priority has a min. processing time of 2 hours;
2) IR2 of lowest priority has a min. processing time of 1 hour;
IR1 requests need to be dealt with before IR2 requests.
Instead of having 2 different priority queues (one for each different priority and processing time), is it possible to handle this in a single FIFO queue? (E.g for 4 different priorities the Sketch will become really messy and I may loose out on competition with Enterprise Dynamics gurus in my company...). Thanks.