Go 程序内存

通过 pprof 发现,一个 Go 进程实际 in use 内存只占用几百兆,实际物理内存占用了 4、5G

原因很清晰,进程的内存分配器,没有把空闲内存还回系统

挤兑内存

可以通过挤兑内存的方式,触发进程归还内存

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <cstdlib>

int main() {
    char *p = NULL;
    const int MB = 1024 * 1024;
    while (1) {
        p = (char *)malloc(100 * MB);
        memset(p, 0, 100 * MB);
        sleep(1);
    }
    return 0;
}

可以添加定时器,定期执行上面代码

当然这种,开发环境可以随便挂个。非最佳实践

主要用于验证

golang 编译选项

GODEBUG=madvdontneed=1

参考