Homework-10 Version 0 |
|
👤 Author: by 751815618qqcom 2019-12-26 08:25:57 |
FCFS Scheduling:
First-come, first-served algorithm is just performing I/O request in the order of request arrival. This often does not provide fastest service.
SSTF Scheduling:
Shortest-seek-time-first algorithm chooses the pending request closest to the current head postion. This algorithm gives a substantial improvement in performance, but it is possible to cause starvation in some situation.