内存映射、磁盘io、网络io理解

1、2,选择新建一个redis或者mongodb服务器也可以:

好处:https://www.cnblogs.com/sunsky303/p/8962628.html和https://www.zhihu.com/question/47589908/answer/114768530

Reids作缓存的几大优势:
1, 简单的K-V式数据存储方式,单一的 get set 模式比传统SQL性能提升显著
2, 纯in mem db 形式,将数据缓存在内存中,减少服务器磁盘IO时间,下载文件快。

上文中的内存映射:https://www.cnblogs.com/feng9exe/p/6889334.html,原文:http://kdf5000.com/2017/02/17/mmap内存映射/

看不懂的话可以粗略的看下这篇文章:https://blog.csdn.net/whoamiyang/article/details/53365385(解释上文中红色部分的内存映射)

上文中涉及的虚拟内存中涉及的计算机RAM和ROM:http://www.xitongzhijia.net/xtjc/20170623/100930.html

上文中的 Zero-Copy&sendfile浅析:https://blog.csdn.net/jiangbo_hit/article/details/6146502

选取内存映射的好处和其适用条件:https://blog.csdn.net/napolunyishi/article/details/18214929

windows端进行内存映射的处理方法:https://www.cnblogs.com/hikeepgoing/p/6013117.html

磁盘io优化总结:https://cloud.tencent.com/developer/article/1121720

网络io:https://www.cnblogs.com/findumars/p/6361627.html

你可能感兴趣的:(内存映射、磁盘io、网络io理解)