我想为 Ubuntu 14.04 配置积极的交换行为。我使用的是 Linux 内核 3.14。我使用以下命令修改了交换行为。
echo 100 > /proc/sys/vm/swappiness
但是,操作系统似乎直到主机用完可用内存后才会换出页面。我怎样才能让操作系统主动将未访问的页面换出到交换设备?
答案1
将 RAM 用于其他用途。分配内存的进程或尝试分配缓存的磁盘 IO 会将空闲页面推送到交换以腾出空间。swappiness 变量只会使系统倾向于将应用程序推送出去,而倾向于将 RAM 用于文件系统缓存。
答案2
您为什么要这么做?
无论如何,如果这就是你想要的,这就是你会得到的:
#include <stdio.h>
#include <sys/sysinfo.h>
fGetMyRAM()
{
FILE* fStream = popen( "head -n1 /proc/meminfo", "r" );
std::ostringstream output;
int iBuffer = 128;
while( !feof( fStream ) && !ferror( fStream ))
{
char cBuffer[iBuffer];
int iBytesRead = fread( cBuffer, 1, iBuffer, fStream );
output.write( cBuffer, iBytesRead );
}
std::string sResult = output.str();
std::string sLabel, sRAM;
std::istringstream iss(sResult);
iss >> sLabel;
iss >> sRAM;
return std::stoi( sRAM );
}
int main()
{
int iMyRAM = fGetMyRAM();
int *pMemoryHog;
while (true)
{
//as malloc alocates largest contiguous memory, keep slicing down.
iMyRam = iMyRam/2;
printf("%d\n", iMyRam);
pMemoryHog = (int *) malloc ((iMyRam)*sizeof(void *));
if (pMemoryHog == 0)
{
printf("Yeah! NO MORE MEMORY!\n");
return 1;
} // end if out of memory
strcpy(pMemoryHog, "42");
} // end while true
free(pMemoryHog);
return 0;
} // end main