On 01/03/2011 01:33 PM, Jakub Narebski wrote: > Instead of having gitweb use progress info indicator / throbber to > notify user that data is being generated by current process, gitweb > can now (provided that PerlIO::tee from PerlIO::Util is available) > send page to web browser while simultaneously saving it to cache > (print and capture, i.e. tee), thus having incremental generating of > page serve as a progress indicator. In general, and particularly for the large sites that caching is targeted at, teeing is a really bad idea. I've mentioned this several times before, and the progress indicator is a *MUCH* better idea. I'm not sure how many times I can say that, even if this was added it would have the potential to exacerbate disk thrashing and overall make things a lot more complex. 1) Errors may still be generated in flight as the cache is being generated. It would be better to let the cache run with a progress indicator and should an error occur, display the error instead of giving any output that may have been generated (and thus likely a broken page). 2) Having multiple clients all waiting on the same page (in particular the index page) can lead to invalid output. In particular if you are teeing the output a reading client now must come in, read the current contents of the file (as written), then pick up on the the tee after that. It's actually possible for the reading client to miss data as it may be in flight to be written and the client is switching from reading the file to reading the tee. I don't see anything in your code to handle that kind of switch over. 3) This makes no allowance for the file to be generated completely in the background while serving stale data in the interim. Keep in mind that it can (as Fedora has experienced) take *HOURS* to generate the index page, teeing that output just means brokenness and isn't useful. It's much better to have a simple, lightweight waiting message get displayed while things happen. When they are done, output the completed page to all waiting clients. - John 'Warthog9' Hawley P.S. I'm back to work full-time on Wednesday, which I'll be catching up on gitweb and trying to make forward progress on my gitweb code again. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html