Speicherzugriffsgeschwindigkeit
Speicherzugriff, or memory access, is the process by which a processor reads from or writes to memory. It covers interactions across the memory hierarchy, from CPU registers and L1/L2/L3 caches to main memory and, ultimately, to secondary storage. The performance of a memory access depends on latency (the time to complete a single access) and bandwidth (the amount of data transferred per unit time). Caches reduce average latency by exploiting temporal and spatial locality, while slower main memory and storage impose higher delays.
In modern systems, virtual memory abstracts physical memory through an address translation unit (MMU). Processes work
Access patterns matter for performance. Locality of reference, prefetching, and proper data alignment influence cache efficiency.
Security and protection are integral to memory access: memory protection units enforce isolation, and virtual memory