gpt4 book ai didi

c++ - fclose() 函数慢

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:15:19 24 4
gpt4 key购买 nike

我尝试在 Linux 机器上使用 c++ fopen、fwrite、fflush 和 fclose 函数创建大约 4 GB 的文件,但我观察到 fclose() 函数需要很长时间才能关闭文件,大约需要 40-50 秒).我检查了不同的论坛以找到这种缓慢的原因,按照论坛中的建议更改了代码,使用 setvbuf() 函数使无缓冲的 I/O 像 write() 函数一样。但仍然无法解决问题。

        totalBytes = 4294967296 // 4GB file
buffersize = 2000;
while ( size <= totalBytes )
{
len = fwrite(buffer, 1, bufferSize, fp);
if ( len != bufferSize ) {
cout<<"ERROR (Internal): in calling ACE_OS::fwrite() "<<endl;
ret = -1;
}
size = size + len;
}
...
...
...
fflush(fp);
flcose(fp);

上述问题的任何解决方案都会非常有帮助。

谢谢,拉梅什

最佳答案

操作系统正在推迟对磁盘的实际写入,并且可能不会在任何写入操作甚至在 fflush() 时实际将数据写入磁盘。

我查看了 fflush() 的手册页,看到了以下注释:

Note that fflush() only flushes the user space buffers provided by the C library. To ensure that the data is physically stored on disk the kernel buffers must be flushed too, for example, with sync(2) or fsync(2).

(对于 fclose() 也有类似的说明,尽管在您的 Linux 系统上的行为似乎有所不同)

关于c++ - fclose() 函数慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12078846/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com