技术编程「翻译」虚拟内存介绍( 三 )


虚拟内存的技术为很多有趣的课题铺平了道路 , 比如内存文件就颠覆了传统的文件读取方式 , 传统的文件读取方式是把文件拷贝到内存里 , 取而代之内存映射的方式是把整个文件都加载到内存后直接在内存里操作 。 在必要时 , 虚拟内存机制将像往常一样负责将数据从硬盘驱动器移动到RAM 。 内存映射文件简化了程序员的工作也加快文件访问 。 更多信息参考这里 。
虚拟内存也让统计内存消耗变得更加困难 。 假设你的一个程序占用了300m的内存:它是虚拟的还是物理的?该空间的一部分是否分页到磁盘?如果是 , 分页操作是否足够快?此外 , 如果您想使系统处于良好状态 , 那么调优分页文件/交换区域是一个重要的步骤 。 操作系统提供了许多度量和调整内存的工具:点击这里查看 。 参考资料
Computer Hope — Memory
Peter J. Denning — Before memory was virtual
Android Authority — What is virtual memory?
Kernel.org — Memory Management
Operating Systems: Three Easy Pieces — Chapter 18: Paging
Philippe's Oppermann — Introduction to Paging
Computer Science from the Bottom Up — Chapter 6. Virtual Memory
Dr. John T. Bell — Operating systems, Virtual Memory
StackOverflow — Do modern OS's use paging and segmentation?
StackOverflow — What is thrashing? Why does it occur?
Wikipedia — Memory address
Wikipedia — Paging
Wikipedia — Address space
Wikipedia — Virtual memory
Wikipedia — Virtual address space
Wikipedia — Thrashing
Wikipedia — Segmentation fault
ITPro Today — Paging Performance
【技术编程「翻译」虚拟内存介绍】Aleph One — Smashing The Stack For Fun And Profit本文来自https://blog.csdn.net/xindoo