I mean PHP scripts on Apache are oriented for many users to use tham at the same time.
So will 1000 requests which came at the (relatively) same time be fully processed faster than C# .Net program performing algorithm 1000 times in while loop?
So we input same data, we perform same algorithm, which is written in the very same way (respecting language differences of course), output the same data (let us say saving it to file for them to be relatively equal)
Algorithm:
- Open file (for each time different in size (from 1 to 500 mb) (FLV video files))
- Read it in binary mode and trace while reading info about container and its components and such other stuff
- Save traced info into file
Who will be faster on some 1000 times of performing algorithm or in 1000000, in which case (if it is possible) one will overrun another?
(on 2 Intel Xeon 2600MHz processors (each with 4 cores in it))