我有一个检查管道是否存在的程序,它是在一个函数中编写的:
status = mkfifo("recv",0666);
fd1 = open("recv",O_WRONLY);
fd2 = open("sendd", O_RDONLY);
cout<<"we are checking botth bcz we have both read and write in the program------:)";
if(fd1 <0 && fd2 <0)
{
//strerror(errno
我在Linux机器上将postgres shared_buffers提高到了7GB。这是大约25%的可用RAM在这台机器上,我相信遵循postgres的建议。
机器上的记忆耗尽了。我看到的是memory进程,每个进程使用7GB驻留的memory.When,我运行在顶部,我看到机器上的内存被充分使用,所以我认为7GB是postmaster进程的私有内存。
我以为shared_buffers内存应该是共享的。
这是postgres 8号
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
15872 postgres