共享内存大小超出系统配置限制

发布于 2024-12-04 02:48:15 字数 80 浏览 0 评论 0原文

ftruncate 可以用来增加共享内存块的大小,使其超出 sysconfig 给出的共享内存限制大小吗?如果物理内存耗尽,如何使其使用交换空间?

can ftruncate be used to increase the size of shared memory block beyond the shared memory limit size given by sysconfig? How do I make it use swap in case physical memory runs out?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤君无依 2024-12-11 02:48:15

可以使用ftruncate来增加共享内存块的大小...

ftruncate() 调整文件大小。它不会调整该文件的内存映射的大小。所以,答案是否定的。

...超出了 sysconfig 给出的共享内存限制大小?

这个限制是不能被突破的。不过,root 用户可以更改该限制。

如果物理内存耗尽,如何使其使用交换?

假设it是一个内存映射文件,一种方法是一次仅映射文件的一部分,而不是整个文件。如果进程使用的虚拟内存多于可用的物理内存,操作系统将自动使用交换来释放一些物理内存。

can ftruncate be used to increase the size of shared memory block ...

ftruncate() resizes a file. It does not resize a memory mapping of that file. So, the answer is no.

... beyond the shared memory limit size given by sysconfig?

That limit can not be breached. root user can change that limit though.

How do I make it use swap in case physical memory runs out?

Assuming it is a memory mapped file, one way is to only map parts of the file at a time, rather than the whole file. If a process uses more virtual memory than there is available physical memory the operating system is going to automatically use swapping to free some physical memory for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文