Preemptive Shortest-Job-First Scheduler
- Tags
- comp-arch
Is like a SJF scheduler except its aggressively preemptive. if a new process comes in with a shorter runtime than the total runtime of the current job then it is run instead.
This has the same general advantages and disadvantages of an SJF scheduler, except it also results in context switching and constant job interruptions.