1 Subject: [PATCH] gitweb: support html cache of summary output
3 The information on the summary page can be expensive to generate.
5 If the information has not changed then it's much faster to
6 simply provide the cache of the page output rather than spending
7 the time to regenerate exactly the same information again.
9 Since the summary page is typically the first page visited for
10 a project (and also one of the more expensive ones to generate)
11 it makes sense to support caching it as its load speed is likely
12 to be highly visible to the end user.
14 Provide configuration variables to specify the caching directory
15 (relative to $GIT_DIR) and whether or not to use a cache for
18 In order for this to be useful, a post-update hook will be
19 needed to remove any summary cache so that the page will be
20 regenerated when appropriate.
22 Signed-off-by: Kyle J. McKay <mackyle@gmail.com>