Community
Participate
Working Groups
The packaging page is slow to load. I count about 3-4 seconds. I think one of the reasons is that it launches several queries like this: mysql> Select count(*) as count from click_count where nid = 110 and platform = 'linux64'; +-------+ | count | +-------+ | 3082 | +-------+ 1 row in set (0.89 sec) mysql> SELECT count(*) as count from click_count where nid = 110 AND timestamp > '2008-07-25 10:04:14'; +-------+ | count | +-------+ | 14793 | +-------+ 1 row in set (0.80 sec) Do you still need these queries now that we track actual downloads on each file? Not only does the page load slowly, but our DB server works hard during those numerous 0.80 second queries.
These queries have been removed. CSS aggregation has also been enabled for the site which should increase the load time of the page by about 5%. This does not however include the eclipse.org-common files as they require and absolute path to display properly. I've also investigated Javascript aggregation, and am close to a solution for that. Overall the performance of the site has been increased by close to 60% from last week.
Can we get Gzip enabled for the packaging site? This would help the performance as well.
> Can we get Gzip enabled for the packaging site? It's enabled site-wide. From what I can see, page load time is indeed 1.6 sec (down from 3-4). This is starting to make sense, thanks. time wget --header "Accept-encoding: gzip, deflate" -S -O /dev/null http://www.eclipse.org/downloads/packages/ HTTP request sent, awaiting response... [snip] Content-Encoding: gzip Content-Length: 4401 real 0m1.653s user 0m0.004s sys 0m0.000s
Are .js files included in the GZip settings?
Yes # Gzippin' love DeflateCompressionLevel 2 AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css AddOutputFilterByType DEFLATE application/atom+xml application/xml application/rdf+xml application/x-javascript AddOutputFilterByType DEFLATE application/pdf application/x-shockwave-flash AddOutputFilterByType DEFLATE image/x-icon
I'm still showing that some javascript files that are being served from the site aren't being Gzip'd can you add text/javascript to the list?
Meh ... works. Thanks!