[지식/팁] 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
이 글을 페이스북으로 퍼가기 이 글을 트위터로 퍼가기 이 글을 카카오스토리로 퍼가기 이 글을 밴드로 퍼가기

메이커 게시판

번호 제목 글쓴이 날짜 조회수
9 자유 게시판 안녕하세요? +1 DreamMaker 07-21 12,132
8 자유 게시판 연금술사들의 불행이 가져다준 귀중한 선물 icon 양재동메이커 04-05 14,934
7 자유 게시판 [푼글] 행복 쫓아가지말고 그냥 열씨미.. 삽시다. icon 청계천도사 03-01 14,124
6 자유 게시판 가입인사 드립니다. +1 야율초재 02-25 14,065
5 자유 게시판 같이 체험활동 할 분을 모십니다. +3 icon 청계천도사 11-11 13,525
4 자유 게시판 고추참치의 야매상식사전- [이스터섬의 비극] icon 양재동메이커 11-09 13,383
3 자유 게시판 고추참치의 야매상식사전- [추수감사절과 필립왕전쟁] icon 양재동메이커 11-05 13,584
2 자유 게시판 고추의 기원과 역사 icon 양재동메이커 10-30 13,803
1 자유 게시판 사람 소변으로 만든 “친환경 벽돌” +1 icon 양재동메이커 10-28 12,858