vote up -1 vote down star

Below code is not exact code. what I try to mean here is fprintf is called many times that adds data to file.Is there by any mean I can control the number writes by increasing buffer size?

FILE *output;
if(output = fopen( szFileNm, "a" ) ) != NULL)
{
for(long i = 0;i<9000000;++i)
fprintf( output, "%ld\n",numLakhs);//assume numLakhs changes for every iteration
}

How do I improve the performance of fprintf in the above code?

Please close the qn since fprintf() works really fast and the question is no more relavent

flag

1  
Do you really want to print the same number 9000000 times? – therefromhere Jul 7 at 10:05
How long does the above loop take to run for you? How long do you expect it to take? – Greg Hewgill Jul 7 at 10:11
Thanks Greg seems fprint seems to work fine – yesraaj Jul 7 at 10:23
Are you referring to IO-buffering/flushing mechanisms? Or do you want to find ways to go around that? – xtofl Jul 7 at 10:42

closed as no longer relevant by yesraaj, Greg Hewgill, Luc Touraille, Martin York, Chas. Owens Jul 9 at 1:10

3 Answers

vote up 4 vote down check

You could try to use large enough buffer. Function setvbuf allows to specify the mode and size for the buffer that used for I/O operations.

link|flag
vote up 1 vote down
  • You are writing the same string at every iteration. Produce it once and use it.
  • You are doing a system call at every iteration. System calls are time consuming. Use less of them, writing a larger string at each iteration.
link|flag
3  
Normally, fprintf is buffered, so a system call to write() will be made only when the buffer fills up. – Greg Hewgill Jul 7 at 10:12
vote up 1 vote down

The obvious solution would be

if(FILE *output = fopen( szFileNm, "a" )))   {
    for(long i = 0;i<9000000;i+=2)
        fprintf( output, "%ld\n%ld\n",numLakhs,numLakhs);
}
link|flag
It may be obvious, but not a good solution. – CiscoIPPhone Jul 7 at 10:16

Not the answer you're looking for? Browse other questions tagged or ask your own question.