I have a strategic question to the use of simultaneously opened fstream
s.
I have to write a program which has too read a large amount of files. In each file there are information to a bunch of identifiers, but one time. I have to compute this information and than save it for each identifier in a separate file. Every identifier appears in several files and should be saved every time in the same file (One identifier with many times).
I expect some hundred identifiers so I doubt I should have several hundred filesteams open simultaneously.
So is there a limitation of simultaneous filestreams? Or do you propose another way of doing this?
The program will compute a massive amount of data (about 10GB or larger) and perhaps computes several hours.
Thanks
See Question&Answers more detail:os