检查数据(堆)是否真的被换出?
在 Linux 或 Windows 中是否可以“提前”检查一块内存是否被换出?也就是说,在不访问它的情况下,然后注意到数据正在从磁盘中引入......
Is it possible, in Linux or Windows to check "in advance", if a piece of memory is swapped out? That is, without accessing it and then notice that data is being brought in from disk...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在linux下你可以使用
mincore
确定页面当前是否在 RAM 中。
Under linux you can use
mincore
to determine if pages are currently in RAM.