On Jul 13, 10:53 am, Steve Souders <
stevesouders...@gmail.com> wrote:
> How would you package those up? Downloading all HAR files for all runs
> would be too huge. Even the HAR files for one run might be too big.
I'd be happy with one enormous tar file. HAR files are bulky but
compress quite well. At, say, 10KB compressed for an average site's
HAR file, the download size for the entire archive would be 150MB.
That's on the same order of magnitude as the currently available MySQL
dump files.
> What would you do with them?
I'm attempting to model the effect that HTTP pipelining (or a large
increase in the client's number of concurrent requests) would have on
nontrivial websites. My methodology is basically:
1. Given a waterfall, apply some heuristics to identify requests that
could be issued earlier if more connections were available or if the
client were willing to pipeline its requests.
2. Adjust the waterfall accordingly.
3. Determine whether the adjusted waterfall has a shorter total
duration than the original.
4. Repeat steps 1-3 for a huge number of websites.
Thanks,
-Brian