Why does RAM fragmentation degrade performance if random access to data is possible?

From what I read, fragmentation is a problem because only adjacent blocks of memory can be allocated. Why is this? Since access to data in RAM can be obtained in any order, is it possible to read non-contiguous blocks of memory as fast? I thought about this because I read that SSD fragmentation is not a problem since they are random access.

+3
source share

All Articles