Reputation: 77030
A virtual storage system has page size p, block size b, and fixed-length record sizer. What should be the relations between p, b and r to make the most efficient system?
Upvotes: 0
Views: 173
Reputation: 74675
p
should be a multiple of b
and b
should be a multiple of r
otherwise you end up with under filled pages and blocks but normally they don't end up exactly so
Upvotes: 1