To share a read/write block of memory between two processes running on the same host,Joe mmaps the same local file from both processes.
情景B:
To share a read/write block of memory between two processes running on two different hosts,Joe shares a file via nfs between the hosts,and then mmaps the shared file from both processes.
有人试过Scenario B吗?场景B中出现的哪些额外问题不适用于场景A?
解决方法 没有一些额外的 *** 作,Mmap将不会共享数据.如果更改文件的mmaped部分中的数据,则更改将仅存储在内存中.它们不会被刷新到文件系统(本地或远程),直到msync
或munmap或关闭甚至决定OS内核及其FS.
使用NFS时,与使用本地FS相比,锁定和存储数据会更慢.刷新超时和文件 *** 作时间也会有所不同.
On the sister site人说NFS可能具有较差的缓存策略,因此将对I / O请求计数与本地FS进行比较的NFS服务器的I / O请求会更多.
总结以上是内存溢出为你收集整理的linux – 通过nfs共享的mmap文件?全部内容,希望文章能够帮你解决linux – 通过nfs共享的mmap文件?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)