in reply to Perl Data Transfer Rate

Are you expecting us to write your application for you, or do you have a question?

Replies are listed 'Best First'.
Re^2: Perl Data Transfer Rate
by Anonymous Monk on Nov 14, 2008 at 21:25 UTC
    I have a script testing the performance and one of the requirement is to know the data transfer in the svn checkout command. I have a question how can I get it using perl. benchmark gives only the time it takes between the command start and command end. timethis was also not useful to me. I am looking for suggestions so I can improve my script.
      Transfer rate is the time it took to perform the transfer — the difference between the results of two calls to time — divided by amount of data transfered. Using time from Time::HiRes will provide greater accuracy.