reference: https://pages.cs.wisc.edu/~remzi/OSTEP/, 시스템 프로그래밍, 운영체제 수업(최종무 교수님)
※ 디스크 접근 시간: millisecond 단위
디스크 접근 시간은 약 10ms.
ex, 7200RPM -> 120RPS, 1/120CHDP 한번 회전 => 약 9ms.
평균적으로 반바퀴 돌 때의 시간은 4.5ms.
탐색 시간, 회전지연 시간까지 합치면 평균 디스크 접근 시간은 10ms 정도. (전송은 전자기적이므로 전송에서의 소요시간은 상대적으로 적다.)
※ How to reduce the Seek time and Rotational latency?
1) 다양한 디스크 스케줄링 활용(ex, SCAN or elevator algorithm)
2) Parallel access techniques(RAID)
source: https://texit.tistory.com/15