[지식/팁] Which is fastest: read, fread, ifstream or mmap?

Which is fastest: read, fread, ifstream or mmap?

If you program in C/C++, you have many options to read files:

  • The standard C library offers a low-level read function. It is as simple as it gets.
  • The standard C library also offers a higher level fread function. Unlike the read function, you can set a buffer size. Buffers can be good or bad. On the one hand, they reduce the number of disk accesses. On the other hand, they introduce an intermediate step between the disk and you data. That is, they may cause the data to be copied needlessly. Buffers usually makes software faster because copying data in memory is much faster than reading it from disk.
  • In C++, you have ifstream. It is very similar to fread, but with a more object-oriented flavor.
  • Finally, you can use memory mapping. Instead of reading blocks of data, you map the content of the file to a pointer and the operating system is responsible with filling in the data. It has the reputation to be very fast because the data on disk can be mapped directly to memory without any undue copying. However, in my experience, it is also less stable: you are unlikely to cause a bus error with fread or ifstream, but the slightest mistake with memory mapping and your program can crash.

For my work, a lot of the IO is based on sequential access. For this kind of access pattern, I have never found memory mapping to be useful. To support my claim, I created a little program that reads arrays of integers from a file, and does some minor computations on them. Memory mapping is not beneficial:

method millions of int. per s 
C read70
C fread124
C++ ifstream124
mmap125

As usual, my benchmark code is available for inspection. I used a Linux desktop with an Intel Core i7 processor and GCC 4.7 with the -O3 flag for my tests.

Conclusion: For sequential access, both fread and ifstream are equally fast. Unbuffered IO (read) is slower, as expected. Memory mapping is not beneficial.

Warning: Benchmarking IO reliably is difficult. Results will vary depending on your configuration.

0
0
이 글을 페이스북으로 퍼가기 이 글을 트위터로 퍼가기 이 글을 카카오스토리로 퍼가기 이 글을 밴드로 퍼가기

메이커 게시판

번호 제목 글쓴이 날짜 조회수
16 지식/팁 고장 수리하기 +1 icon 청계천도사 01-26 11,433
15 지식/팁 심박수 금성 08-12 12,223
14 지식/팁 vector push_back 오류 icon 양재동메이커 07-27 12,404
13 지식/팁 [ASP] 프로시져 parameters 정리 icon 양재동메이커 07-09 12,141
12 지식/팁 코딩 표준(변수 명명법) icon HellMaker 05-06 14,615
11 지식/팁 USB 단자 규격 케이블의 종류 icon HellMaker 05-05 13,118
10 지식/팁 VC ++ 속도 최적화 옵션 icon 양재동메이커 04-24 11,466
9 지식/팁 HC-06 AT 명령어 icon 양재동메이커 04-13 11,500
8 지식/팁 [C/C++ 언어] __DATE__, __TIME__, __FILE__, __LINE__ icon 양재동메이커 04-13 12,511
7 지식/팁 2021 달력 icon 청계천도사 01-19 12,907
6 지식/팁 Arduino UNO R3 vs ESP32 Infrared Remote Sensor Value icon 양재동메이커 07-09 13,344
5 지식/팁 MG996R 서버 모터 이상 동작 icon 양재동메이커 07-02 13,470
4 지식/팁 Which is fastest: read, fread, ifstream or mmap? icon 양재동메이커 02-05 14,334
3 지식/팁 Serial Port Plotter icon 양재동메이커 03-09 16,135
2 지식/팁 서보 모터가 동작하지 않을 때 HX5010 / SG5010 / Servo / SG-5010 +2 icon 양재동메이커 01-28 21,316
1 지식/팁 '메이커'와 '메이커 운동'이 뭔가요? icon 청계천도사 11-19 16,029