<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Newest Industry &#187; Web Performance</title>
	<atom:link href="http://newestindustry.org/category/web-performance/feed/" rel="self" type="application/rss+xml" />
	<link>http://newestindustry.org</link>
	<description>Web Performance, Branding, and Social Media</description>
	<lastBuildDate>Fri, 12 Mar 2010 21:41:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom:link rel='hub' href='http://newestindustry.org/?pushpress=hub'/>
<cloud domain='newestindustry.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>The Complexity of Web Performance</title>
		<link>http://newestindustry.org/2010/03/03/the-complexity-of-web-performance/</link>
		<comments>http://newestindustry.org/2010/03/03/the-complexity-of-web-performance/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 16:36:14 +0000</pubDate>
		<dc:creator>smp</dc:creator>
				<category><![CDATA[Effective Web Performance]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Web Performance]]></category>
		<category><![CDATA[Web performance concepts]]></category>
		<category><![CDATA[WebPerformance.Org]]></category>
		<category><![CDATA[Firewall]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Layer 7]]></category>
		<category><![CDATA[MSIE]]></category>
		<category><![CDATA[network diagram]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[User agent]]></category>

		<guid isPermaLink="false">http://newestindustry.org/?p=2715</guid>
		<description><![CDATA[
			
				
			
		
Helping a colleague this week, we uncovered some odd behavior with a site whose performance he was analyzing. Upon first glance, it was clear that this site had a performance issue &#8211; they had HTTP persistence disabled. Immediate red flag in the areas of network overhead and geographic latency.
Further digging exposed something more sinister. It [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F&amp;source=spierzchala&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="what unique texturing the sky feels painted" href="http://flickr.com/photos/70285332@N00/4294081816"><img style="float: right; padding: 4px;" src="http://farm5.static.flickr.com/4013/4294081816_3e4e1df30f_m.jpg" alt="" /></a>Helping a colleague this week, we uncovered some odd behavior with a site whose performance he was analyzing. Upon first glance, it was clear that this site had a performance issue &#8211; they had HTTP persistence disabled. Immediate red flag in the areas of network overhead and geographic latency.</p>
<p>Further digging exposed something more sinister. It seems that HTTP persistence was only disabled for browsers with <em>MSIE</em> in the user-agent string. Even if the user-agent string was just <em>MSIE</em>, HTTP persistence was off.</p>
<p>The customer was very forthcoming and sent us their standard <em>httpd.conf</em> file. This showed no sign of the standard (and frustrating) global disabling of persistence for Internet Explorer.</p>
<p>Finally, it came to us. The customer had provided a simple network diagram, and there, just before packets hit the Internet, was a Layer 7 firewall. How did we know the Layer 7 firewall was the likely cause? Because this device was also the one that provided compression for the content going out to customers.</p>
<p>A Layer 7 firewall happily rewrites HTTP headers to reflect the nature of the compressed content (content-length or transfer-encoding: chunked) and to add the gzip flag (accept-encoding:gzip). Since this device was already doing this, it was pretty clear to us that it also had a rule that disabled HTTP persistence for anything with <em>MSIE</em> in the user-agent string.</p>
<p>This was a fine example of the complexity of the modern Web application infrastructure. In effect, there were two groups with different ideas of how Internet Explorer should be handled at the network layer, and neither of them seems to have talked to the other.</p>
<p>When you have a Web performance problem, indulge in a thought experiment. Create an imaginary incoming Web request and try to see if you can follow it through all the systems it touches on your system. Put it on a whiteboard, a mindmap, whatever works.</p>
<p>Then invite the system architects and network engineers in and get them to fill in the gaps.</p>
<p>No doubt that will lead to the &#8220;ah ha!&#8221; moment. If nothing else, it&#8217;s a good excuse to put pizza on the company card. But I have no doubt that you will walk away with a better understanding of your systems, which will make it easier for you to talk to all the people responsible for keeping your systems running.</p>
<p><strong>TAKEAWAY:</strong> Just because the part of the Web application you work on is working fine, it may be affected by other components that are not tuned or configured for performance. Get to know the entire application at a high level.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Spread the Love:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F&amp;t=The%20Complexity%20of%20Web%20Performance" title="Facebook"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=The%20Complexity%20of%20Web%20Performance%20-%20http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F" title="Twitter"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F&amp;title=The%20Complexity%20of%20Web%20Performance&amp;body=Helping%20a%20colleague%20this%20week%2C%20we%20uncovered%20some%20odd%20behavior%20with%20a%20site%20whose%20performance%20he%20was%20analyzing.%20Upon%20first%20glance%2C%20it%20was%20clear%20that%20this%20site%20had%20a%20performance%20issue%20-%20they%20had%20HTTP%20persistence%20disabled.%20Immediate%20red%20flag%20in%20the%20areas" title="Ping.fm"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F&amp;title=The%20Complexity%20of%20Web%20Performance&amp;bodytext=Helping%20a%20colleague%20this%20week%2C%20we%20uncovered%20some%20odd%20behavior%20with%20a%20site%20whose%20performance%20he%20was%20analyzing.%20Upon%20first%20glance%2C%20it%20was%20clear%20that%20this%20site%20had%20a%20performance%20issue%20-%20they%20had%20HTTP%20persistence%20disabled.%20Immediate%20red%20flag%20in%20the%20areas" title="Digg"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F&amp;title=The%20Complexity%20of%20Web%20Performance" title="StumbleUpon"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F&amp;title=The%20Complexity%20of%20Web%20Performance&amp;source=Newest+Industry+Web+Performance%2C+Branding%2C+and+Social+Media&amp;summary=Helping%20a%20colleague%20this%20week%2C%20we%20uncovered%20some%20odd%20behavior%20with%20a%20site%20whose%20performance%20he%20was%20analyzing.%20Upon%20first%20glance%2C%20it%20was%20clear%20that%20this%20site%20had%20a%20performance%20issue%20-%20they%20had%20HTTP%20persistence%20disabled.%20Immediate%20red%20flag%20in%20the%20areas" title="LinkedIn"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F&amp;title=The%20Complexity%20of%20Web%20Performance" title="Reddit"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=The%20Complexity%20of%20Web%20Performance&amp;url=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F" title="Slashdot"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvouz.com/action/submitBookmark?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F&amp;title=The%20Complexity%20of%20Web%20Performance&amp;popup=no" title="Netvouz"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/netvouz.png" title="Netvouz" alt="Netvouz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F" title="Identi.ca"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F" title="Technorati"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F&amp;title=The%20Complexity%20of%20Web%20Performance&amp;notes=Helping%20a%20colleague%20this%20week%2C%20we%20uncovered%20some%20odd%20behavior%20with%20a%20site%20whose%20performance%20he%20was%20analyzing.%20Upon%20first%20glance%2C%20it%20was%20clear%20that%20this%20site%20had%20a%20performance%20issue%20-%20they%20had%20HTTP%20persistence%20disabled.%20Immediate%20red%20flag%20in%20the%20areas" title="del.icio.us"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="mailto:?subject=The%20Complexity%20of%20Web%20Performance&amp;body=http%3A%2F%2Fnewestindustry.org%2F2010%2F03%2F03%2Fthe-complexity-of-web-performance%2F" title="email"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://newestindustry.org/2010/03/03/the-complexity-of-web-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compression and the Browser &#8211; Who Supports What?</title>
		<link>http://newestindustry.org/2010/02/10/compression-and-the-browser-who-supports-what/</link>
		<comments>http://newestindustry.org/2010/02/10/compression-and-the-browser-who-supports-what/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 17:44:25 +0000</pubDate>
		<dc:creator>smp</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Effective Web Performance]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Web Performance]]></category>
		<category><![CDATA[Web performance concepts]]></category>
		<category><![CDATA[WebPerformance.Org]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[Cross-browser]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTTP compression]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Internet Explorer 5]]></category>
		<category><![CDATA[internet explorer 6]]></category>
		<category><![CDATA[internet explorer 7]]></category>
		<category><![CDATA[Internet Explorer 8]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Markup languages]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[web browsers]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://newestindustry.org/?p=2711</guid>
		<description><![CDATA[
			
				
			
		
The title is a question I ask because I hear so many different views and perspectives about HTTP compression from the people I work with, colleagues and customers alike.
There appears to be no absolute statement about the compression capabilities of all current (or in-use) browsers anywhere on the Web.
My standard line is: If your customers [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F&amp;source=spierzchala&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a style="float: left; padding: 4px;" title="Come Together" href="http://flickr.com/photos/16230215@N08/2898797929"><img src="http://farm4.static.flickr.com/3282/2898797929_f209eeb4a4_t.jpg" alt="" /></a>The title is a question I ask because I hear so many different views and perspectives about HTTP compression from the people I work with, colleagues and customers alike.</p>
<p>There appears to be no absolute statement about the compression capabilities of all current (or in-use) browsers anywhere on the Web.</p>
<p>My standard line is: If your customers are using modern browsers, compress all text content &#8212; HTML (dynamic and static), CSS, XML, and Javascript. If you find that a subset of your customers have challenges with compression (I suggest using a cross-browser testing tool to determine this <strong>before</strong> your customers do), write very explicit regular expressions into your Web server or compression device configuration to filter the user-agent string in a targeted, not a global, way.</p>
<p>For example, last week I was on a call with a customer and they disabled compression for all versions of Internet Explorer 6, as the Windows XP pre-SP2 version (which they say you could not easily identify) did not handle it well. My immediate response (in my head, not out loud) was that if you had customers using Window XP pre-SP2, those machines were likely <em>pwned</em> by the Russian Mob. I find it very odd that an organization would disable HTTP compression for all Internet Explorer 6 visitors for the benefit of a very small number of ancient Windows XP installations.</p>
<p>Feedback from readers, experts, and browser manufacturers that would allow me to compile a list of compatible browsers, and any known issues or restrictions with browsers, would go a long way to resolving this ongoing debate.</p>
<p><strong>UPDATE:</strong> <a title="Aaron Peters - Twitter" href="http://twitter.com/aaronpeters" target="_blank">Aaron Peters</a> pointed me in the direction of <a title="BrowserScope - www.browserscope.org" href="http://www.browserscope.org/" target="_blank">BrowserScope</a> which has an extensive (exhaustive?) list of browsers and their capabilities. If you are seeking the final word, this is a good place to start, as it tests real browsers being used by real people in the real world.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Spread the Love:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F&amp;t=Compression%20and%20the%20Browser%20-%20Who%20Supports%20What%3F" title="Facebook"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Compression%20and%20the%20Browser%20-%20Who%20Supports%20What%3F%20-%20http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F" title="Twitter"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F&amp;title=Compression%20and%20the%20Browser%20-%20Who%20Supports%20What%3F&amp;body=The%20title%20is%20a%20question%20I%20ask%20because%20I%20hear%20so%20many%20different%20views%20and%20perspectives%20about%20HTTP%20compression%20from%20the%20people%20I%20work%20with%2C%20colleagues%20and%20customers%20alike.%0D%0A%0D%0AThere%20appears%20to%20be%20no%20absolute%20statement%20about%20the%20compression%20capabilities%20" title="Ping.fm"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F&amp;title=Compression%20and%20the%20Browser%20-%20Who%20Supports%20What%3F&amp;bodytext=The%20title%20is%20a%20question%20I%20ask%20because%20I%20hear%20so%20many%20different%20views%20and%20perspectives%20about%20HTTP%20compression%20from%20the%20people%20I%20work%20with%2C%20colleagues%20and%20customers%20alike.%0D%0A%0D%0AThere%20appears%20to%20be%20no%20absolute%20statement%20about%20the%20compression%20capabilities%20" title="Digg"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F&amp;title=Compression%20and%20the%20Browser%20-%20Who%20Supports%20What%3F" title="StumbleUpon"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F&amp;title=Compression%20and%20the%20Browser%20-%20Who%20Supports%20What%3F&amp;source=Newest+Industry+Web+Performance%2C+Branding%2C+and+Social+Media&amp;summary=The%20title%20is%20a%20question%20I%20ask%20because%20I%20hear%20so%20many%20different%20views%20and%20perspectives%20about%20HTTP%20compression%20from%20the%20people%20I%20work%20with%2C%20colleagues%20and%20customers%20alike.%0D%0A%0D%0AThere%20appears%20to%20be%20no%20absolute%20statement%20about%20the%20compression%20capabilities%20" title="LinkedIn"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F&amp;title=Compression%20and%20the%20Browser%20-%20Who%20Supports%20What%3F" title="Reddit"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Compression%20and%20the%20Browser%20-%20Who%20Supports%20What%3F&amp;url=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F" title="Slashdot"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvouz.com/action/submitBookmark?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F&amp;title=Compression%20and%20the%20Browser%20-%20Who%20Supports%20What%3F&amp;popup=no" title="Netvouz"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/netvouz.png" title="Netvouz" alt="Netvouz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F" title="Identi.ca"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F" title="Technorati"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F&amp;title=Compression%20and%20the%20Browser%20-%20Who%20Supports%20What%3F&amp;notes=The%20title%20is%20a%20question%20I%20ask%20because%20I%20hear%20so%20many%20different%20views%20and%20perspectives%20about%20HTTP%20compression%20from%20the%20people%20I%20work%20with%2C%20colleagues%20and%20customers%20alike.%0D%0A%0D%0AThere%20appears%20to%20be%20no%20absolute%20statement%20about%20the%20compression%20capabilities%20" title="del.icio.us"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="mailto:?subject=Compression%20and%20the%20Browser%20-%20Who%20Supports%20What%3F&amp;body=http%3A%2F%2Fnewestindustry.org%2F2010%2F02%2F10%2Fcompression-and-the-browser-who-supports-what%2F" title="email"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://newestindustry.org/2010/02/10/compression-and-the-browser-who-supports-what/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>If you have Wordpress, Use WP Super Cache</title>
		<link>http://newestindustry.org/2009/09/11/if-you-have-wordpress-use-wp-super-cache/</link>
		<comments>http://newestindustry.org/2009/09/11/if-you-have-wordpress-use-wp-super-cache/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 16:11:35 +0000</pubDate>
		<dc:creator>smp</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[GrabPERF]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web Performance]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WP Super Cache]]></category>

		<guid isPermaLink="false">http://newestindustry.org/2009/09/11/if-you-have-wordpress-use-wp-super-cache/</guid>
		<description><![CDATA[
			
				
			
		

I just did a quick experiment to validate my hunch, and it&#8217;s true &#8211; WP Super Cache can cut your HTML load time in half in your WP deployment. Just check out the GrabPERF Measurement that backs this up.
Posted via email from Newest Industry Express



Spread the Love:


	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F&amp;source=spierzchala&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://posterous.com/getfile/files.posterous.com/crazycanuck/JJGL2Yv0Z9LK7Sz8dYkaUEXmOvc9XKXghTTiS6K5xGmxtKmoTyQ5gmZf7YGM/wp-supercache-performance.png"><img src="http://posterous.com/getfile/files.posterous.com/crazycanuck/zFctTbCZpiMUrndUqOBt9cXi8jBzgSriN78QjfY5osxp0CgC6hKy2JpIJN7k/wp-supercache-performance.png.scaled.500.jpg" alt="" width="500" height="250" /></a></p>
<p>I just did a quick experiment to validate my hunch, and it&#8217;s true &#8211; WP Super Cache can cut your HTML load time in half in your WP deployment. Just check out the GrabPERF Measurement that backs this up.</p>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via email</a> from <a href="http://crazycanuck.posterous.com/if-you-have-wordpress-use-wp-super-cache">Newest Industry Express</a></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Spread the Love:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F&amp;t=If%20you%20have%20Wordpress%2C%20Use%20WP%20Super%20Cache" title="Facebook"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=If%20you%20have%20Wordpress%2C%20Use%20WP%20Super%20Cache%20-%20http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F" title="Twitter"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F&amp;title=If%20you%20have%20Wordpress%2C%20Use%20WP%20Super%20Cache&amp;body=%0D%0A%0D%0AI%20just%20did%20a%20quick%20experiment%20to%20validate%20my%20hunch%2C%20and%20it%27s%20true%20-%20WP%20Super%20Cache%20can%20cut%20your%20HTML%20load%20time%20in%20half%20in%20your%20WP%20deployment.%20Just%20check%20out%20the%20GrabPERF%20Measurement%20that%20backs%20this%20up.%0D%0APosted%20via%20email%20from%20Newest%20Industry%20Expre" title="Ping.fm"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F&amp;title=If%20you%20have%20Wordpress%2C%20Use%20WP%20Super%20Cache&amp;bodytext=%0D%0A%0D%0AI%20just%20did%20a%20quick%20experiment%20to%20validate%20my%20hunch%2C%20and%20it%27s%20true%20-%20WP%20Super%20Cache%20can%20cut%20your%20HTML%20load%20time%20in%20half%20in%20your%20WP%20deployment.%20Just%20check%20out%20the%20GrabPERF%20Measurement%20that%20backs%20this%20up.%0D%0APosted%20via%20email%20from%20Newest%20Industry%20Expre" title="Digg"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F&amp;title=If%20you%20have%20Wordpress%2C%20Use%20WP%20Super%20Cache" title="StumbleUpon"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F&amp;title=If%20you%20have%20Wordpress%2C%20Use%20WP%20Super%20Cache&amp;source=Newest+Industry+Web+Performance%2C+Branding%2C+and+Social+Media&amp;summary=%0D%0A%0D%0AI%20just%20did%20a%20quick%20experiment%20to%20validate%20my%20hunch%2C%20and%20it%27s%20true%20-%20WP%20Super%20Cache%20can%20cut%20your%20HTML%20load%20time%20in%20half%20in%20your%20WP%20deployment.%20Just%20check%20out%20the%20GrabPERF%20Measurement%20that%20backs%20this%20up.%0D%0APosted%20via%20email%20from%20Newest%20Industry%20Expre" title="LinkedIn"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F&amp;title=If%20you%20have%20Wordpress%2C%20Use%20WP%20Super%20Cache" title="Reddit"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=If%20you%20have%20Wordpress%2C%20Use%20WP%20Super%20Cache&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F" title="Slashdot"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvouz.com/action/submitBookmark?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F&amp;title=If%20you%20have%20Wordpress%2C%20Use%20WP%20Super%20Cache&amp;popup=no" title="Netvouz"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/netvouz.png" title="Netvouz" alt="Netvouz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F" title="Identi.ca"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F" title="Technorati"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F&amp;title=If%20you%20have%20Wordpress%2C%20Use%20WP%20Super%20Cache&amp;notes=%0D%0A%0D%0AI%20just%20did%20a%20quick%20experiment%20to%20validate%20my%20hunch%2C%20and%20it%27s%20true%20-%20WP%20Super%20Cache%20can%20cut%20your%20HTML%20load%20time%20in%20half%20in%20your%20WP%20deployment.%20Just%20check%20out%20the%20GrabPERF%20Measurement%20that%20backs%20this%20up.%0D%0APosted%20via%20email%20from%20Newest%20Industry%20Expre" title="del.icio.us"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="mailto:?subject=If%20you%20have%20Wordpress%2C%20Use%20WP%20Super%20Cache&amp;body=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F11%2Fif-you-have-wordpress-use-wp-super-cache%2F" title="email"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://newestindustry.org/2009/09/11/if-you-have-wordpress-use-wp-super-cache/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Effective Web Performance: The Wrong 80 Percent</title>
		<link>http://newestindustry.org/2009/09/10/effective-web-performance-the-wrong-80-percent/</link>
		<comments>http://newestindustry.org/2009/09/10/effective-web-performance-the-wrong-80-percent/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 02:32:43 +0000</pubDate>
		<dc:creator>smp</dc:creator>
				<category><![CDATA[Effective Web Performance]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Web Performance]]></category>
		<category><![CDATA[Steve Souders]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://newestindustry.org/?p=2691</guid>
		<description><![CDATA[
			
				
			
		
Steve Souders is the current king of Web performance gurus. His mantra, which is sound and can be borne out by empirical evidence, is that 80% of performance issues occur between the Web server and the Web browser. He offers a fantastically detailed methodology for approaching these issues.
But fixing the 80% of performance issues that [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F&amp;source=spierzchala&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="World Wide Web" href="http://flickr.com/photos/8052186@N03/2108474925"><img style="float:left;padding-right:8px;padding-bottom:4px;" src="http://farm3.static.flickr.com/2363/2108474925_64c54ec5a7_m.jpg" alt="" /></a><a title="Steve Souders" href="http://www.stevesouders.com/blog/">Steve Souders</a> is the current king of Web performance gurus. His mantra, which is sound and can be borne out by empirical evidence, is that 80% of performance issues occur between the Web server and the Web browser. He offers a fantastically detailed methodology for approaching these issues.</p>
<p>But fixing the 80% of performance issues that occur on the front-end of a Web site doesn&#8217;t fix the 80% of the problems that occur in the company that created the Web site.</p>
<p>Huh? <span style="background-color: #ffffff; ">Well, as <a title="Wikipedia - Inigo Montoya" href="http://en.wikipedia.org/wiki/Inigo_Montoya" target="_blank">Inigo Montoya</a> would say, <em>let me explain. </em></span></p>
<p><span style="background-color: #ffffff; "><em></em>The front-end of a Web site is the final product of a process, (hopefully) shaped by a vision, developed by a company delivering a service or product. It&#8217;s the process, that 80% of Web site development that is not Web site development, that let a Web site with high response times and poor user experience get out the door in the first place.</span></p>
<p><span style="background-color: #ffffff; ">Shouldn&#8217;t the main concern of any organization be to understand why the process for creating, managing, and measuring Web sites is such that after expending substantial effort and treasure to create a Web site, it has to be fixed because of performance issues detected only <em>after</em> the process is complete?</span></p>
<p>Souders&#8217; 80% will <em>fix</em> the immediate problem, and the Web site will end up being measurably faster in a short period of time. The caveat to the technical fix is that unless you can step back and determine how a Web site that needed to be <em>fixed</em> was released in the first place, there is a strong likelihood that the old habits will appear again.</p>
<p>Yahoo! and Google are organizations that are fanatically focused on performance. So, in some respects, it&#8217;s understandable how someone (like Steve Souders) who comes out of a performance culture can see all issues as technical issues. I started out in a technical environment, and when I locked myself in that silo, every Web performance issue had a technical solution.</p>
<p>I&#8217;ve talked about culture and web performance <a title="Effective Web Performance - The Culture of Performance" href="http://newestindustry.org/2009/08/17/effective-web-performance-the-culture-of-performance/" target="_blank">before</a>, but the message bears repeating. A web performance problem can be fixed with a technical solution. But patching the hole in the dike doesn&#8217;t stop you from eventually having to look at why the dike got a hole in the first place.</p>
<p>Solving performance Web problems starts with not tolerating them in the first place. Focusing on solving the technical 80% of Web performance leaves the other 80% of the problem, the culture and processes that originally created the performance issues, untouched.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Spread the Love:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F&amp;t=Effective%20Web%20Performance%3A%20The%20Wrong%2080%20Percent" title="Facebook"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Effective%20Web%20Performance%3A%20The%20Wrong%2080%20Percent%20-%20http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F" title="Twitter"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Wrong%2080%20Percent&amp;body=Steve%20Souders%20is%20the%20current%20king%20of%20Web%20performance%20gurus.%20His%20mantra%2C%20which%20is%20sound%20and%20can%20be%20borne%20out%20by%20empirical%20evidence%2C%20is%20that%2080%25%20of%20performance%20issues%20occur%20between%20the%20Web%20server%20and%20the%20Web%20browser.%20He%20offers%20a%20fantastically%20detailed%20" title="Ping.fm"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Wrong%2080%20Percent&amp;bodytext=Steve%20Souders%20is%20the%20current%20king%20of%20Web%20performance%20gurus.%20His%20mantra%2C%20which%20is%20sound%20and%20can%20be%20borne%20out%20by%20empirical%20evidence%2C%20is%20that%2080%25%20of%20performance%20issues%20occur%20between%20the%20Web%20server%20and%20the%20Web%20browser.%20He%20offers%20a%20fantastically%20detailed%20" title="Digg"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Wrong%2080%20Percent" title="StumbleUpon"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Wrong%2080%20Percent&amp;source=Newest+Industry+Web+Performance%2C+Branding%2C+and+Social+Media&amp;summary=Steve%20Souders%20is%20the%20current%20king%20of%20Web%20performance%20gurus.%20His%20mantra%2C%20which%20is%20sound%20and%20can%20be%20borne%20out%20by%20empirical%20evidence%2C%20is%20that%2080%25%20of%20performance%20issues%20occur%20between%20the%20Web%20server%20and%20the%20Web%20browser.%20He%20offers%20a%20fantastically%20detailed%20" title="LinkedIn"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Wrong%2080%20Percent" title="Reddit"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Effective%20Web%20Performance%3A%20The%20Wrong%2080%20Percent&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F" title="Slashdot"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvouz.com/action/submitBookmark?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Wrong%2080%20Percent&amp;popup=no" title="Netvouz"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/netvouz.png" title="Netvouz" alt="Netvouz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F" title="Identi.ca"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F" title="Technorati"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Wrong%2080%20Percent&amp;notes=Steve%20Souders%20is%20the%20current%20king%20of%20Web%20performance%20gurus.%20His%20mantra%2C%20which%20is%20sound%20and%20can%20be%20borne%20out%20by%20empirical%20evidence%2C%20is%20that%2080%25%20of%20performance%20issues%20occur%20between%20the%20Web%20server%20and%20the%20Web%20browser.%20He%20offers%20a%20fantastically%20detailed%20" title="del.icio.us"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="mailto:?subject=Effective%20Web%20Performance%3A%20The%20Wrong%2080%20Percent&amp;body=http%3A%2F%2Fnewestindustry.org%2F2009%2F09%2F10%2Feffective-web-performance-the-wrong-80-percent%2F" title="email"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://newestindustry.org/2009/09/10/effective-web-performance-the-wrong-80-percent/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Effective Web Performance: What to Manage</title>
		<link>http://newestindustry.org/2009/08/28/effective-web-performance-what-to-manage/</link>
		<comments>http://newestindustry.org/2009/08/28/effective-web-performance-what-to-manage/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 12:30:48 +0000</pubDate>
		<dc:creator>smp</dc:creator>
				<category><![CDATA[Effective Web Performance]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Web Performance]]></category>
		<category><![CDATA[Web analytics]]></category>
		<category><![CDATA[Web performance concepts]]></category>
		<category><![CDATA[Network performance]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[proactive]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[Web performance management]]></category>

		<guid isPermaLink="false">http://newestindustry.org/?p=2660</guid>
		<description><![CDATA[
			
				
			
		
One of the traditional areas of frustration for Operations and Development teams in the Web world is that their performance, Web performance, is measured from the outside-in.
The resistance of this camp is strong, and they will appear without warning, even from amongst the most enlightened of companies.
How can they be recognized?
You will hear their battle-cry, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F&amp;source=spierzchala&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="wlan for free" href="http://flickr.com/photos/48165069@N00/194274460"><img style="float:left;padding:6px;" src="http://farm1.static.flickr.com/46/194274460_c376892888_m.jpg" alt="" /></a>One of the traditional areas of frustration for Operations and Development teams in the Web world is that their performance, Web performance, is measured from the outside-in.</p>
<p>The resistance of this camp is strong, and they will appear without warning, even from amongst the most enlightened of companies.</p>
<p>How can they be recognized?</p>
<p>You will hear their battle-cry, their mantra, their fundamental belief that their application, their infrastructure is a misunderstood victim. That if they could only get their one idea across, the whole of the company would be enlightened.</p>
<p>The fundamental tenet of this group is simple and short.</p>
<p style="padding-left: 30px;"><em>How can we manage the Internet?</em></p>
<p>The obvious fallacy of this argument is clear to any Web performance professional or business analyst: Customers get to our business across the Internet, not via psychic modem. In order to keep close tabs on the experience of our customers, the site, application, code must be measured from the outside-in.</p>
<p>In order to prevent making enemies and perpetuating already ossified corporate silos, take the initiative. Gently steer the discussion in a new direction by making this incredibly vast problem into one everyone in the company can understand. By adding a single word to the initial question, the fearful and reactive perspective can be dramatically shifted to one that could make the members of this camp see the light.</p>
<p>Make the question:</p>
<p style="padding-left: 30px;"><em>How can we manage</em> <strong>for</strong><em> the Internet?</em></p>
<p>Now the focus of the discussion is now proactive &#8211; is there something we are missing that could reduce the problems and/or prevent them from ever happening?</p>
<p>Taking the all-encompassing and awe-inspiring challenge that is the Internet and turning it into a Boy Scout moment may reinvigorate the internal conversation, and give people a sense of purpose. Now they will be galvanized to consider whether everything in their power is being done to prevent performance issues before bits hit the Internet.</p>
<p>Effective Web performance hinges on taking the obvious challenges that face all Web sites, and turning them into solutions that mitigate these challenges as much as possible. So, in the next team meeting, the next time you hear someone say that it&#8217;s just the Internet, ask what can still be done to manage the application more effectively for the Internet.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Spread the Love:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F&amp;t=Effective%20Web%20Performance%3A%20What%20to%20Manage" title="Facebook"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Effective%20Web%20Performance%3A%20What%20to%20Manage%20-%20http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F" title="Twitter"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F&amp;title=Effective%20Web%20Performance%3A%20What%20to%20Manage&amp;body=One%20of%20the%20traditional%20areas%20of%20frustration%20for%20Operations%20and%20Development%20teams%20in%20the%20Web%20world%20is%20that%20their%20performance%2C%20Web%20performance%2C%20is%20measured%20from%20the%20outside-in.%0D%0A%0D%0AThe%20resistance%20of%20this%20camp%20is%20strong%2C%20and%20they%20will%20appear%20without%20warn" title="Ping.fm"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F&amp;title=Effective%20Web%20Performance%3A%20What%20to%20Manage&amp;bodytext=One%20of%20the%20traditional%20areas%20of%20frustration%20for%20Operations%20and%20Development%20teams%20in%20the%20Web%20world%20is%20that%20their%20performance%2C%20Web%20performance%2C%20is%20measured%20from%20the%20outside-in.%0D%0A%0D%0AThe%20resistance%20of%20this%20camp%20is%20strong%2C%20and%20they%20will%20appear%20without%20warn" title="Digg"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F&amp;title=Effective%20Web%20Performance%3A%20What%20to%20Manage" title="StumbleUpon"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F&amp;title=Effective%20Web%20Performance%3A%20What%20to%20Manage&amp;source=Newest+Industry+Web+Performance%2C+Branding%2C+and+Social+Media&amp;summary=One%20of%20the%20traditional%20areas%20of%20frustration%20for%20Operations%20and%20Development%20teams%20in%20the%20Web%20world%20is%20that%20their%20performance%2C%20Web%20performance%2C%20is%20measured%20from%20the%20outside-in.%0D%0A%0D%0AThe%20resistance%20of%20this%20camp%20is%20strong%2C%20and%20they%20will%20appear%20without%20warn" title="LinkedIn"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F&amp;title=Effective%20Web%20Performance%3A%20What%20to%20Manage" title="Reddit"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Effective%20Web%20Performance%3A%20What%20to%20Manage&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F" title="Slashdot"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvouz.com/action/submitBookmark?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F&amp;title=Effective%20Web%20Performance%3A%20What%20to%20Manage&amp;popup=no" title="Netvouz"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/netvouz.png" title="Netvouz" alt="Netvouz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F" title="Identi.ca"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F" title="Technorati"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F&amp;title=Effective%20Web%20Performance%3A%20What%20to%20Manage&amp;notes=One%20of%20the%20traditional%20areas%20of%20frustration%20for%20Operations%20and%20Development%20teams%20in%20the%20Web%20world%20is%20that%20their%20performance%2C%20Web%20performance%2C%20is%20measured%20from%20the%20outside-in.%0D%0A%0D%0AThe%20resistance%20of%20this%20camp%20is%20strong%2C%20and%20they%20will%20appear%20without%20warn" title="del.icio.us"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="mailto:?subject=Effective%20Web%20Performance%3A%20What%20to%20Manage&amp;body=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F28%2Feffective-web-performance-what-to-manage%2F" title="email"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://newestindustry.org/2009/08/28/effective-web-performance-what-to-manage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Effective Web Performance: Measurement-First or CDN-First?</title>
		<link>http://newestindustry.org/2009/08/25/effective-web-performance-measurement-first-or-cdn-first/</link>
		<comments>http://newestindustry.org/2009/08/25/effective-web-performance-measurement-first-or-cdn-first/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 17:00:31 +0000</pubDate>
		<dc:creator>smp</dc:creator>
				<category><![CDATA[Effective Web Performance]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Web Performance]]></category>
		<category><![CDATA[business management]]></category>
		<category><![CDATA[content delivery network]]></category>
		<category><![CDATA[content delivery networks]]></category>
		<category><![CDATA[Content management systems]]></category>
		<category><![CDATA[IT management]]></category>
		<category><![CDATA[Last mile]]></category>
		<category><![CDATA[Mobile CDN]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[performance measurement]]></category>
		<category><![CDATA[Web performance measurement]]></category>

		<guid isPermaLink="false">http://newestindustry.org/2009/08/26/effective-web-performance-when-to-cdn/</guid>
		<description><![CDATA[
			
				
			
		
A hallway conversation this morning brought up a very interesting point about the relationship between Web performance measurements and Content Delivery Networks (CDNs). When choosing between a Web performance measurement solution and a CDN, which service should come first?
Companies facing dire and obvious Web performance issues will want immediate results, leading them to fall into [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F&amp;source=spierzchala&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="Sponge" href="http://flickr.com/photos/7702002@N08/3032828425"><img style="float:left;padding:6px;" src="http://farm4.static.flickr.com/3239/3032828425_5954c4075f_m.jpg" alt="" /></a>A hallway conversation this morning brought up a very interesting point about the relationship between Web performance measurements and Content Delivery Networks (<strong>CDNs</strong>). When choosing between a Web performance measurement solution and a CDN, which service should come first?</p>
<p>Companies facing dire and obvious Web performance issues will want immediate results, leading them to fall into the <em>CDN-First</em> camp. Deploying a CDN will have a positive effect on response times, increase user satisfaction, and may even increase customer conversions, in the short term.</p>
<p>In six months, deeper questions may start to be asked. A core question that will need to be answered by <em>CDN-First</em> organizations will be &#8220;<em>A</em><em>re we using the CDN effectively and efficiently?</em>&#8220;.</p>
<p>A company that makes the leap to CDN deployment without assessing the overall performance environment of their Web site may be faced with a situation where they can&#8217;t tell if they need more, less, or different CDN strategies in order to continue to succeed.</p>
<p>As a result of the <em>buyers remorse</em> that can result from the leap directly to a CDN, I highly recommend the <em>Measurement-First</em> approach when selecting a CDN.</p>
<p>To help you become an advocate for the <em>Measurement-First</em> approach, come to the table during the CDN discussions and ask three questions. The answers will allow your organization to make the best and most appropriate CDN decision.</p>
<h3>1. Is the CDN necessary?</h3>
<p>In most cases, the answer to this is a resounding <em>yes</em>. But what can happen with a sudden shift to the CDN is that a organization overlooks those things that they can do themselves to gain some initial performance improvements.</p>
<p>Baselining the existing site before deploying a CDN will allow items and elements that need to be improved to be clearly identified. In some cases, an organization can fix some of these on their own to improve performance before investing in a CDN. In other cases, measuring the performance of a site may clearly indicate that third-party content is responsible for the performance issues, which would likely not be fixed by a CDN deployment.</p>
<p>A <em>Measurement-First</em> policy helps clearly identify the geographies that have the worst performance before deploying the CDN. If performance in the US is acceptable, while performance in Europe or Asia-Pacific is intolerable, then the CDN deployment may initially be targeted to respond to the greatest pain first.</p>
<p>Understanding the current performance of your existing site can reduce the cost of the initial deployment and maximize the the long term effectiveness of the deployment.</p>
<h3>2. Which CDN is best for us?</h3>
<p>For a complex modern Web site, content comes in many different shapes, sizes, and formats. The thing is, so do CDNs. As <a title="Newest Industry - Effective Web Performance: Choosing a CDN" href="http://newestindustry.org/2009/08/13/effective-web-performance-choosing-a-cdn/" target="_blank">I&#8217;ve discussed before</a>, understanding what the CDNs vying for your business do and do well is as critical as the process of vetting their effectiveness compared to delivering the site yourself. The performance boost given to you site by a CDN may vary by region, leading your team to select one CDN for Europe and another for the Asia-Pacific region.</p>
<p>CDN performance can also vary based on the content you are asking them to accelerate. One CDN may be good at streaming media, while another may be better at static content (JS, CSS, Images, etc.), while yet another is better at accelerating the delivery of dynamic content.</p>
<p>Choose your CDN(s) based on what you need them to deliver. In some cases, one size does not fit all.</p>
<h3>3. Is the CDN delivering?</h3>
<p>This may look like a question for after the purchase has been completed and the solution deployed, but you will never know if the solution is working effectively unless you have a baseline of your performance before the deployment, and from your origin servers after deployment.</p>
<p>Measuring the performance of the CDNs under all conditions and from all perspectives (Datacenter, Last Mile, and from within the Browser) doesn&#8217;t stop with the selection of a CDN(s). It becomes even more critical once the CDN solution(s) is rolled into production in order to ensure that the level of service that was promised during the sales cycle is delivered once you become a customer.</p>
<p>Constantly validate the performance of the CDN-accelerated site with the performance of the non-accelerated origin site. Have regular meetings with, and channels of communication into, your CDN(s) to discuss not only existing performance, but how changes you and/or the CDN provider are planning may affect performance in the future.</p>
<h3>Takeaway</h3>
<p>CDNs are a critical component for any Web business that wants to scale and deliver services to a national or global audience. But selecting a CDN should come <em>after</em> you have a very strong understanding of the current performance of your own Web site.</p>
<p>After you have measured and identified the items you can do to improve your own performance, your team will have greater insight into the areas of your site where the services of a CDN(s) can have the greatest impact.</p>
<p>The <em>Measurement-First</em> approach to selecting a CDN will ensure that you select a set of services that exactly meets the unique performance challenges of your site.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Spread the Love:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F&amp;t=Effective%20Web%20Performance%3A%20Measurement-First%20or%20CDN-First%3F" title="Facebook"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Effective%20Web%20Performance%3A%20Measurement-First%20or%20CDN-First%3F%20-%20http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F" title="Twitter"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F&amp;title=Effective%20Web%20Performance%3A%20Measurement-First%20or%20CDN-First%3F&amp;body=A%20hallway%20conversation%20this%20morning%20brought%20up%20a%20very%20interesting%20point%20about%20the%20relationship%20between%20Web%20performance%20measurements%20and%20Content%20Delivery%20Networks%20%28CDNs%29.%20When%20choosing%20between%20a%20Web%20performance%20measurement%20solution%20and%20a%20CDN%2C%20which%20se" title="Ping.fm"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F&amp;title=Effective%20Web%20Performance%3A%20Measurement-First%20or%20CDN-First%3F&amp;bodytext=A%20hallway%20conversation%20this%20morning%20brought%20up%20a%20very%20interesting%20point%20about%20the%20relationship%20between%20Web%20performance%20measurements%20and%20Content%20Delivery%20Networks%20%28CDNs%29.%20When%20choosing%20between%20a%20Web%20performance%20measurement%20solution%20and%20a%20CDN%2C%20which%20se" title="Digg"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F&amp;title=Effective%20Web%20Performance%3A%20Measurement-First%20or%20CDN-First%3F" title="StumbleUpon"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F&amp;title=Effective%20Web%20Performance%3A%20Measurement-First%20or%20CDN-First%3F&amp;source=Newest+Industry+Web+Performance%2C+Branding%2C+and+Social+Media&amp;summary=A%20hallway%20conversation%20this%20morning%20brought%20up%20a%20very%20interesting%20point%20about%20the%20relationship%20between%20Web%20performance%20measurements%20and%20Content%20Delivery%20Networks%20%28CDNs%29.%20When%20choosing%20between%20a%20Web%20performance%20measurement%20solution%20and%20a%20CDN%2C%20which%20se" title="LinkedIn"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F&amp;title=Effective%20Web%20Performance%3A%20Measurement-First%20or%20CDN-First%3F" title="Reddit"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Effective%20Web%20Performance%3A%20Measurement-First%20or%20CDN-First%3F&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F" title="Slashdot"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvouz.com/action/submitBookmark?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F&amp;title=Effective%20Web%20Performance%3A%20Measurement-First%20or%20CDN-First%3F&amp;popup=no" title="Netvouz"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/netvouz.png" title="Netvouz" alt="Netvouz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F" title="Identi.ca"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F" title="Technorati"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F&amp;title=Effective%20Web%20Performance%3A%20Measurement-First%20or%20CDN-First%3F&amp;notes=A%20hallway%20conversation%20this%20morning%20brought%20up%20a%20very%20interesting%20point%20about%20the%20relationship%20between%20Web%20performance%20measurements%20and%20Content%20Delivery%20Networks%20%28CDNs%29.%20When%20choosing%20between%20a%20Web%20performance%20measurement%20solution%20and%20a%20CDN%2C%20which%20se" title="del.icio.us"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="mailto:?subject=Effective%20Web%20Performance%3A%20Measurement-First%20or%20CDN-First%3F&amp;body=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F25%2Feffective-web-performance-measurement-first-or-cdn-first%2F" title="email"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://newestindustry.org/2009/08/25/effective-web-performance-measurement-first-or-cdn-first/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Effective Web Performance: An Introduction and A Manifesto</title>
		<link>http://newestindustry.org/2009/08/19/effective-web-performance-an-introduction-and-a-manifesto/</link>
		<comments>http://newestindustry.org/2009/08/19/effective-web-performance-an-introduction-and-a-manifesto/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 04:00:33 +0000</pubDate>
		<dc:creator>smp</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Effective Web Performance]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Web Performance]]></category>
		<category><![CDATA[Web analytics]]></category>
		<category><![CDATA[WebPerformance.Org]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[Business intelligence]]></category>
		<category><![CDATA[Cache]]></category>
		<category><![CDATA[Conversational agent]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[Hypertext Transfer Protocol]]></category>
		<category><![CDATA[Information technology management]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Performance management]]></category>
		<category><![CDATA[Strategic management]]></category>
		<category><![CDATA[Strategic planning]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[Web performance conversation]]></category>
		<category><![CDATA[Web services]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://newestindustry.org/?p=2608</guid>
		<description><![CDATA[
			
				
			
		
Every so often, you wake up and realize that the world has changed around you. Or, to say it better, your view of the world has changed so profoundly, but also so subtly and slowly that it is imperceptible unless you take the time to look back at where you came from.
Six years ago, if [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F&amp;source=spierzchala&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="Management of Complexity" href="http://flickr.com/photos/15748454@N00/3090102907"><img style="float:left;padding:6px;" src="http://farm4.static.flickr.com/3235/3090102907_c3b7c67a13_m.jpg" alt="" /></a>Every so often, you wake up and realize that the world has changed around you. Or, to say it better, your view of the world has changed so profoundly, but also so subtly and slowly that it is imperceptible unless you take the time to look back at where you came from.</p>
<p>Six years ago, if you had asked me what the most important problems in Web performance were, I would have reeled off a list that was focused on technology and configuration: HTTP compression, HTTP persistent connections, caching, etc. In fact, six years on, these are still the concepts that dominate Web performance conversations.</p>
<p>Slowly, glacially, shaped by six years of working with customers and clients, listening to the Web performance conversations that flow across the Web and within companies, I realize that technology is only one component of the Web performance solution.</p>
<h2>Web Performance is NOT Just Technology</h2>
<p>Most organizations focus too much of their efforts on solving the technical problems because they are discrete, easy to track, and produce quantifiable results.</p>
<p>Fair enough.</p>
<p>But a highly tuned engine with a rusted chassis, four flat wheels, and a voided warranty still has a Web performance problem, even if it is technically sound.</p>
<p><a title="Web Performance Venn by spierzchala, on Flickr" href="http://www.flickr.com/photos/spierzchala/3834978903/"><img style="float:right;padding:6px;" src="http://farm3.static.flickr.com/2432/3834978903_c33ea45aa7_m.jpg" alt="Web Performance Venn" width="240" height="225" /></a>The complexity of the issue arises from the terminology used. <em>Web performance</em>, in current parlance, refers almost completely to the delivery of the site in an appropriate and measurable manner.</p>
<p>Web performance is not simply the generation and delivery of HTML and other objects. Web performance is <em>conversation</em> that defines the basic nature of any Web site.</p>
<p><span style="background-color: #ffffff; ">Approaching Web performance, as I had for so many years, as a technical problem with a discrete solution overlooks the true nature of Web performance. A culture of effective Web performance absorbs a number of different inputs, and then ensures that the site performs across many different vectors, not just the two-dimensional response/success over time graph.</span></p>
<h2><span style="background-color: #ffffff; ">Web Performance is Culture and Communication</span></h2>
<p>Web performance is an issue of culture. And at the root of all cultures lies communication.</p>
<p>The Web performance conversation has three components, each one shaping the potential response to the <em>problem</em> and providing elements of the <em>solution</em>.</p>
<h4>1. Technical Capabilities</h4>
<p>Technical organizations spend a great deal of their time defining what they can&#8217;t do. <span style="background-color: #ffffff; ">In an organization that has a culture of effective Web performance, the technical teams provide clear definitions of the current capabilities, and clearly demonstrate how far they can take the organization down the chosen path, hopefully without spending all of the company&#8217;s treasure.</span></p>
<h4>2. Business Objectives</h4>
<p>Just as the technical organization has to define what they can do with what they have, the business organization has to come to the table with a clear definition of what they want to achieve. If a business goal is clearly stated to the technical team, then a conversation about where there may be challenges and opportunities can occur. When business and IT talk and <em>listen</em>, a company is becoming far more effective at delivering the best site they can.</p>
<h4>3. Customer Expectations</h4>
<p>Neglected, forgotten, nay, even ignored, the role of the customers&#8217; expectations in the Web performance equation is just as critical as the other two participants. With clear business objectives and defined technical capabilities, a site can still be seen as a Web performance failure if the expectations of the customer are not met. And it is not simply listening to customer and providing everything they want. It&#8217;s understanding why they need a feature/function/option in order to be more successful at what they do, and balancing that against the other two players in the conversation.</p>
<h2>Now What?</h2>
<p>But where does an organization that wants to take Web performance beyond the technical problem, and into the realm of the strategic solution go?</p>
<p>Do a search on any search engine and you will find page upon page of technical solutions to a supposedly technical problem. Web performance is not solely a technical problem. In many cases, the site is configured and tweaked and tuned and accelerated to such a degree that you have to wonder if is under-performing out of spite more than any other reason.</p>
<p>Scratch the surface. Look beyond the shiny toys and massively-scaled infrastructure and you will find that technology is not the issue. The demand placed on the site by the business are bogging the site down in ways that no amount of tuning could improve.</p>
<p>Perhaps the business goals of the site, the need to support the business, have pushed the technology to its breaking point or beyond, but the technology team cannot clearly articulate what the problem or solution is.</p>
<p>Maybe customers, used to competitors delivering one level of Web performance and experience are simply not happy with the site, no matter how tuned it is and how clearly the call to action may be.</p>
<p>Making a Web site perform effectively means stepping back and asking some key questions:</p>
<ul>
<li>Why do we have a site?</li>
<li>How does this site help our business?</li>
<li>Why do our customers use our site?</li>
<li>Do we like using our site?</li>
<li>What are our competitors doing?</li>
<li>What are the best Web companies doing?</li>
</ul>
<p>These seem like silly questions. But you may be surprised by the differing answers you get.</p>
<p>And from there, the conversation can start.</p>
<h2>Takeaways</h2>
<p>Simply put, Web performance is not about understanding how to make your site faster. Web performance is about understanding what you can do to make your site <em>better</em>. <span style="background-color: #ffffff;">An effective Web site is one that is shaped by a culture of effective Web performance.</span></p>
<p>Striving to make a better, more effective Web site may lead to such profound cultural and organizational changes that the process ends up making a better company. A company where the Web site is seen as an active conversation shared with employees, shareholders, investors, and customers.</p>
<p>A conversation where you explain what can be done, why you are doing it, and how you will do it. A conversation where you listen to what must be done, how it is expected to work, and what the customer defines as success.</p>
<p>So when you wake up six years from now, and realize that the day you <em>stopped</em> treating your Web site as a technical problem that needed to be fixed, and started seeing it as an opportunity to create a more effective business, I hope you smile.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Spread the Love:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F&amp;t=Effective%20Web%20Performance%3A%20An%20Introduction%20and%20A%20Manifesto" title="Facebook"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Effective%20Web%20Performance%3A%20An%20Introduction%20and%20A%20Manifesto%20-%20http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F" title="Twitter"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F&amp;title=Effective%20Web%20Performance%3A%20An%20Introduction%20and%20A%20Manifesto&amp;body=Every%20so%20often%2C%20you%20wake%20up%20and%20realize%20that%20the%20world%20has%20changed%20around%20you.%20Or%2C%20to%20say%20it%20better%2C%20your%20view%20of%20the%20world%20has%20changed%20so%20profoundly%2C%20but%20also%20so%20subtly%20and%20slowly%20that%20it%20is%20imperceptible%20unless%20you%20take%20the%20time%20to%20look%20back%20at%20whe" title="Ping.fm"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F&amp;title=Effective%20Web%20Performance%3A%20An%20Introduction%20and%20A%20Manifesto&amp;bodytext=Every%20so%20often%2C%20you%20wake%20up%20and%20realize%20that%20the%20world%20has%20changed%20around%20you.%20Or%2C%20to%20say%20it%20better%2C%20your%20view%20of%20the%20world%20has%20changed%20so%20profoundly%2C%20but%20also%20so%20subtly%20and%20slowly%20that%20it%20is%20imperceptible%20unless%20you%20take%20the%20time%20to%20look%20back%20at%20whe" title="Digg"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F&amp;title=Effective%20Web%20Performance%3A%20An%20Introduction%20and%20A%20Manifesto" title="StumbleUpon"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F&amp;title=Effective%20Web%20Performance%3A%20An%20Introduction%20and%20A%20Manifesto&amp;source=Newest+Industry+Web+Performance%2C+Branding%2C+and+Social+Media&amp;summary=Every%20so%20often%2C%20you%20wake%20up%20and%20realize%20that%20the%20world%20has%20changed%20around%20you.%20Or%2C%20to%20say%20it%20better%2C%20your%20view%20of%20the%20world%20has%20changed%20so%20profoundly%2C%20but%20also%20so%20subtly%20and%20slowly%20that%20it%20is%20imperceptible%20unless%20you%20take%20the%20time%20to%20look%20back%20at%20whe" title="LinkedIn"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F&amp;title=Effective%20Web%20Performance%3A%20An%20Introduction%20and%20A%20Manifesto" title="Reddit"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Effective%20Web%20Performance%3A%20An%20Introduction%20and%20A%20Manifesto&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F" title="Slashdot"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvouz.com/action/submitBookmark?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F&amp;title=Effective%20Web%20Performance%3A%20An%20Introduction%20and%20A%20Manifesto&amp;popup=no" title="Netvouz"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/netvouz.png" title="Netvouz" alt="Netvouz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F" title="Identi.ca"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F" title="Technorati"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F&amp;title=Effective%20Web%20Performance%3A%20An%20Introduction%20and%20A%20Manifesto&amp;notes=Every%20so%20often%2C%20you%20wake%20up%20and%20realize%20that%20the%20world%20has%20changed%20around%20you.%20Or%2C%20to%20say%20it%20better%2C%20your%20view%20of%20the%20world%20has%20changed%20so%20profoundly%2C%20but%20also%20so%20subtly%20and%20slowly%20that%20it%20is%20imperceptible%20unless%20you%20take%20the%20time%20to%20look%20back%20at%20whe" title="del.icio.us"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="mailto:?subject=Effective%20Web%20Performance%3A%20An%20Introduction%20and%20A%20Manifesto&amp;body=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F19%2Feffective-web-performance-an-introduction-and-a-manifesto%2F" title="email"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://newestindustry.org/2009/08/19/effective-web-performance-an-introduction-and-a-manifesto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Effective Web Performance: Third-Party Providers (Or Why Herding Cats is Fun)</title>
		<link>http://newestindustry.org/2009/08/18/effective-web-performance-third-party-providers-or-why-herding-cats-is-fun/</link>
		<comments>http://newestindustry.org/2009/08/18/effective-web-performance-third-party-providers-or-why-herding-cats-is-fun/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 12:00:37 +0000</pubDate>
		<dc:creator>smp</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Effective Web Performance]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Web Performance]]></category>
		<category><![CDATA[Web analytics]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[content delivery network]]></category>
		<category><![CDATA[herding cats]]></category>
		<category><![CDATA[JavaScript programming language]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Outsourcing]]></category>
		<category><![CDATA[performance measurement]]></category>
		<category><![CDATA[Service Level Agreement]]></category>
		<category><![CDATA[Service level objectives]]></category>
		<category><![CDATA[stress]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[web browsers]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://newestindustry.org/?p=2582</guid>
		<description><![CDATA[
			
				
			
		
It&#8217;s a rare Web site these days that hosts all of its own content. From the smallest blog to the largest retailer, Web sites farm out their images, streams, and pages to CDNs, and absorb feeds, ads, and data streams from any number of outside providers.
Effective Web performance demands that a site take responsibility for [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F&amp;source=spierzchala&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="A really really bad day" href="http://flickr.com/photos/27073477@N00/3719561835"><img style="float:left;padding:6px;" src="http://farm3.static.flickr.com/2616/3719561835_77503c5e59_m.jpg" alt="" /></a>It&#8217;s a rare Web site these days that hosts all of its own content. From the smallest blog to the largest retailer, Web sites farm out their images, streams, and pages to CDNs, and absorb feeds, ads, and data streams from any number of outside providers.</p>
<p>Effective Web performance demands that a site take responsibility for the entire site, not just the parts under direct local management. Why? Because customers see a problem with your site, not with a provider.</p>
<p>How can the performance all of the third-party content on a site be managed? Using the exactly the same strategies already place to manage the performance of  local content.</p>
<h3>Measure from the outside-in</h3>
<p>Customers come from the Internet. That measuring the performance of a site from the perspective of visitors is being mentioned here should not be a surprise. Critical to this part of managing third-parties is the ability to see into the page and determine if there are performance issues requesting and transmitting data from third-parties.</p>
<p>In the <a title="Newest Industry - Effective Web Performance" href="http://newestindustry.org/2009/08/12/effective-web-performance/" target="_blank">first article of this series</a>, I detailed a number of approaches to actively gathering performance data. This method, whether from the datacenter or the last mile, will provide the early warning signs that there is an issue with a third-party, and feeding this data into the <a title="Newest Industry - Effective Web Performance: Positively Managing Performance Issues" href="http://newestindustry.org/2009/08/17/effective-web-performance-positively-managing-performance-issues/" target="_blank">performance issue management plan</a>.</p>
<h3>Measure from inside the browser</h3>
<p>The network and application performance of a third-party page component is just the start of the process, as this is what it takes to get the object to the browser. But what if this object then launches a number of actions, or starts to render on the screen. This may lead to a whole different range of issues that are a blind spot when analyzing Web performance.</p>
<p>Measuring the performance of discrete page elements from within the visitors browser will provide deeper insight into what effects the customer sees and which third-parties will need to be approached in order to improve the overall Web performance of the site.</p>
<h3>Have clear and useful SLOs and SLAs</h3>
<p>Service level objectives and service level agreements are often thrown about whenever there is the suspicion that there is a Web performance issue. Using these documents and frameworks as a club to beat up partners with is counter-productive.</p>
<p>SLOs and SLAs should clearly detail:</p>
<ul>
<li><span style="background-color: #ffffff;">the performance expectations of the Web site owner</span></li>
<li><span style="background-color: #ffffff;">the performance and delivery capabilities of the third-party provider </span></li>
</ul>
<p>Guess what? Arriving at this in a way that doesn&#8217;t lead to resentment and mistrust on both sides requires open and honest discussion.</p>
<h3>Share data</h3>
<p>If Web site owners and third-parties are going to work together to ensure the most effective Web performance strategy possible, then data must flow freely. Vendors will need access to the same data that Web site owners have (and vice versa) in order to ensure that if an issue is detected, everyone can examine all of the available data, and solve the problem quickly.</p>
<h3>Communication</h3>
<p>A recurring and critical theme when establishing a culture of effective Web performance is communication. When working with third-parties, this is even more critical, as the performance culture of one organization may be completely different from another.  The Web site owner may have one site of criteria that determines a Web performance issue, while the vendor has another, and unless these are understood, problems will occur.</p>
<p>Clear communication paths must be baked into the SLA. Named contacts or contact paths will be there, as will expected response times for inbound requests, and escalation procedures.</p>
<p>When there is a performance issue, both sides will need to be very clear about how each other will respond.</p>
<h2>Takeaways</h2>
<p>Third-party content on Web sites is a fact. It shouldn&#8217;t be a headache. Effective Web performance measurement strategies, shared sources of Web performance data, and clearly understood paths and methods of communication will make using third-party content less stress-inducing to everyone.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Spread the Love:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F&amp;t=Effective%20Web%20Performance%3A%20Third-Party%20Providers%20%28Or%20Why%20Herding%20Cats%20is%20Fun%29" title="Facebook"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Effective%20Web%20Performance%3A%20Third-Party%20Providers%20%28Or%20Why%20Herding%20Cats%20is%20Fun%29%20-%20http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F" title="Twitter"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F&amp;title=Effective%20Web%20Performance%3A%20Third-Party%20Providers%20%28Or%20Why%20Herding%20Cats%20is%20Fun%29&amp;body=It%27s%20a%20rare%20Web%20site%20these%20days%20that%20hosts%20all%20of%20its%20own%20content.%20From%20the%20smallest%20blog%20to%20the%20largest%20retailer%2C%20Web%20sites%20farm%20out%20their%20images%2C%20streams%2C%20and%20pages%20to%20CDNs%2C%20and%20absorb%20feeds%2C%20ads%2C%20and%20data%20streams%20from%20any%20number%20of%20outside%20provide" title="Ping.fm"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F&amp;title=Effective%20Web%20Performance%3A%20Third-Party%20Providers%20%28Or%20Why%20Herding%20Cats%20is%20Fun%29&amp;bodytext=It%27s%20a%20rare%20Web%20site%20these%20days%20that%20hosts%20all%20of%20its%20own%20content.%20From%20the%20smallest%20blog%20to%20the%20largest%20retailer%2C%20Web%20sites%20farm%20out%20their%20images%2C%20streams%2C%20and%20pages%20to%20CDNs%2C%20and%20absorb%20feeds%2C%20ads%2C%20and%20data%20streams%20from%20any%20number%20of%20outside%20provide" title="Digg"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F&amp;title=Effective%20Web%20Performance%3A%20Third-Party%20Providers%20%28Or%20Why%20Herding%20Cats%20is%20Fun%29" title="StumbleUpon"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F&amp;title=Effective%20Web%20Performance%3A%20Third-Party%20Providers%20%28Or%20Why%20Herding%20Cats%20is%20Fun%29&amp;source=Newest+Industry+Web+Performance%2C+Branding%2C+and+Social+Media&amp;summary=It%27s%20a%20rare%20Web%20site%20these%20days%20that%20hosts%20all%20of%20its%20own%20content.%20From%20the%20smallest%20blog%20to%20the%20largest%20retailer%2C%20Web%20sites%20farm%20out%20their%20images%2C%20streams%2C%20and%20pages%20to%20CDNs%2C%20and%20absorb%20feeds%2C%20ads%2C%20and%20data%20streams%20from%20any%20number%20of%20outside%20provide" title="LinkedIn"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F&amp;title=Effective%20Web%20Performance%3A%20Third-Party%20Providers%20%28Or%20Why%20Herding%20Cats%20is%20Fun%29" title="Reddit"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Effective%20Web%20Performance%3A%20Third-Party%20Providers%20%28Or%20Why%20Herding%20Cats%20is%20Fun%29&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F" title="Slashdot"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvouz.com/action/submitBookmark?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F&amp;title=Effective%20Web%20Performance%3A%20Third-Party%20Providers%20%28Or%20Why%20Herding%20Cats%20is%20Fun%29&amp;popup=no" title="Netvouz"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/netvouz.png" title="Netvouz" alt="Netvouz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F" title="Identi.ca"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F" title="Technorati"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F&amp;title=Effective%20Web%20Performance%3A%20Third-Party%20Providers%20%28Or%20Why%20Herding%20Cats%20is%20Fun%29&amp;notes=It%27s%20a%20rare%20Web%20site%20these%20days%20that%20hosts%20all%20of%20its%20own%20content.%20From%20the%20smallest%20blog%20to%20the%20largest%20retailer%2C%20Web%20sites%20farm%20out%20their%20images%2C%20streams%2C%20and%20pages%20to%20CDNs%2C%20and%20absorb%20feeds%2C%20ads%2C%20and%20data%20streams%20from%20any%20number%20of%20outside%20provide" title="del.icio.us"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="mailto:?subject=Effective%20Web%20Performance%3A%20Third-Party%20Providers%20%28Or%20Why%20Herding%20Cats%20is%20Fun%29&amp;body=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F18%2Feffective-web-performance-third-party-providers-or-why-herding-cats-is-fun%2F" title="email"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://newestindustry.org/2009/08/18/effective-web-performance-third-party-providers-or-why-herding-cats-is-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Effective Web Performance: The Culture of Performance</title>
		<link>http://newestindustry.org/2009/08/17/effective-web-performance-the-culture-of-performance/</link>
		<comments>http://newestindustry.org/2009/08/17/effective-web-performance-the-culture-of-performance/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 14:15:56 +0000</pubDate>
		<dc:creator>smp</dc:creator>
				<category><![CDATA[Effective Web Performance]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Performance]]></category>
		<category><![CDATA[Web analytics]]></category>
		<category><![CDATA[WebPerformance.Org]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Business/Finance]]></category>
		<category><![CDATA[culture of web performance]]></category>
		<category><![CDATA[customer experience]]></category>
		<category><![CDATA[Customer experience management]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[Web performance management]]></category>

		<guid isPermaLink="false">http://newestindustry.org/?p=2597</guid>
		<description><![CDATA[
			
				
			
		
A quote from Avinash Kaushik (Occam&#8217;s Razor and @avinashkaushik) to start this post.
I have a 10/90 rule . If your budget is $100 then spend $10 on tools and professional services to implement them, and spend $90 on hiring people to analyze data you collect on your website.
The web is quite complex, you are going [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F&amp;source=spierzchala&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="I Believe You Have My Red Swingline Stapler" href="http://flickr.com/photos/82312837@N00/1133303891"><img style="float:left;padding:6px;" src="http://farm2.static.flickr.com/1248/1133303891_d64798013c_m.jpg" alt="" /></a>A quote from Avinash Kaushik (<a title="Occam's Razor by Avinash Kaushik" href="http://www.kaushik.net/avinash/" target="_blank">Occam&#8217;s Razor</a> and <a title="Twitter - Avinash Kaushik" href="http://twitter.com/avinashkaushik" target="_blank">@avinashkaushik</a>) to start this post.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 30px;"><em>I have a </em><a style="color: #ad7e18; text-decoration: none;" href="http://www.kaushik.net/avinash/2006/05/the-10-90-rule-for-magnificient-web-analytics-success.html"><em>10/90 rule</em></a><em> . If your budget is $100 then spend $10 on tools and professional services to implement them, and spend $90 on hiring people to analyze data you collect on your website.</em></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 30px;"><em>The web is quite complex, you are going to access </em><a style="color: #ad7e18; text-decoration: none;" href="http://www.kaushik.net/avinash/2007/11/multiplicity-succeed-awesomely-at-web-analytics-20.html"><em>multiple sources of data</em></a><em>, you are going to have to do a lot of leg work. Blood, sweat and tears. You don&#8217;t just need tools for that (remember 85% of the data you get from any tool, free or paid is essentially the same). You need people!</em></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 30px;"><em>Hire the best people you can find, tools will never be a limitation for them.</em></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 30px; text-align: right;"><em>from <a style="color: #ad7e18; text-decoration: none; border: initial none initial;" title="Permanent Link: This I Believe [A Manifesto for Web Marketers &amp; Analysts]" rel="bookmark" href="http://www.kaushik.net/avinash/2009/07/manifesto-web-marketers-analysts.html">This I Believe [A Manifesto for Web Marketers &amp; Analysts]</a></em></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">Staring at this as I sipped my coffee stopped me dead.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">Beside me I have two full pages of notes on what makes up the Web performance culture of company, and here is one of the most succinct points summed up for me in two short paragraphs.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">Web performance is not just about tools and methodologies. Effective Web performance requires dedicated and trained <em>human</em> resources. And those people need to be able to work in a culture that values and understands the importance of Web performance to the business. <span style="background-color: #ffffff;">Without a culture of Web performance, any tool, technology, and methodology purchased to <em>make things better</em> is useless.</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">In a <a title="Newest Industry - Web Performance: How long can you ignore the money?" href="http://newestindustry.org/2009/08/03/web-performance-how-long-can-you-ignore-the-money/" target="_blank">previous post </a>I touched on the question of whether an organization sees Web performance as a technology or business issue. Answering this question is key to understanding a company&#8217;s perspective on Web performance issues.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">Start by asking <em>Who is responsible for Web performance?</em> at a company. Is there a cross-functional team that meets regularly to discuss current performance, long-term trends, the competitive landscape, effects on customer experience, and how performance concerns are shaping and guiding upcoming development efforts?</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">Or is Web performance a set of anonymous charts and tables that have no context ,originating from the inscrutable measurement system, bundled up into an executive report by an unnamed staff member for a once a month meeting?</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">Most companies understand Web performance is crucial. They understand it affects the bottom line and customer experience. They understand all of the ideas and concepts of Web performance.Â <span style="background-color: #ffffff;">But like the proverbial horse and water, they don&#8217;t drink from the stream in front of them. They don&#8217;t drink because they are too busy watching for cougars, wolverines, and poachers. They have too much going on to make Web performance a priority.</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">Part of developing a strong culture of Web performance is creating a business culture that is customer-centric. When a company turns their perspective around and makes delighting the customer a part of everything they do, the customer experience on the Web becomes a critical component of the culture.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">The key to making Web performance a part of a customer-centric culture is to shift Web performance discussions from the <em>abstract</em> (full of numbers and charts representing the potential of Web performance to affect customers) to the <em>real</em> (effect of Web performance on towns and cities and people and the bottom line). Attaching a name, a place, or a value to every number on a Web performance chart makes it easier for people in an organization to absorb the effect it has on them as an employee.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">Moving the discussion about Web performance from the testing lab and NOC to the breakroom and the hallway takes a greater effort. It starts by making Web performance data available to all, not just those who are tasked with monitoring it.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">A culture of Web performance means that the $90 you spent on people is supplemented by a team of avid <em>amateurs</em> who notice changes and trends that may slip through the cracks. These amateurs are encouraged to participate in Web performance discussions, where the experts are encouraged to <em>listen</em> then contribute.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">Why listen to avid amateurs? In many cases, they are the people who work directly with customers and use the products on a daily basis. Their feedback comes from real experience, set alongside abstract values. Once a measurement has a story, it makes it easier to understand the problem.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">An example of the success of amateurs is Wikipedia. A population of amateur contributors, as well as a core of experts in certain fields, have ensured that this is a useful resource. A Web performance culture full of avid amateurs allows comments and stories to flow from the customer-centric parts of an organization into the technology and business parts of the organization. These stories and inputs make the Web performance more real, and make a chart in a report more important.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">A culture of Web performance is one that is adopted by an entire company. It is a way of examining the reality of a site in a way that is customer-centric and customer-driven. A strong Web performance culture absorbs information from many sources, and filters the data through a customer filter, and makes every measurement count.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px;">

<div class="sociable">
<div class="sociable_tagline">
<strong>Spread the Love:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F&amp;t=Effective%20Web%20Performance%3A%20The%20Culture%20of%20Performance" title="Facebook"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Effective%20Web%20Performance%3A%20The%20Culture%20of%20Performance%20-%20http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F" title="Twitter"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Culture%20of%20Performance&amp;body=A%20quote%20from%20Avinash%20Kaushik%20%28Occam%27s%20Razor%20and%20%40avinashkaushik%29%20to%20start%20this%20post.%0D%0AI%20have%20a%2010%2F90%20rule%20.%20If%20your%20budget%20is%20%24100%20then%20spend%20%2410%20on%20tools%20and%20professional%20services%20to%20implement%20them%2C%20and%20spend%20%2490%20on%20hiring%20people%20to%20analyze%20data%20you" title="Ping.fm"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Culture%20of%20Performance&amp;bodytext=A%20quote%20from%20Avinash%20Kaushik%20%28Occam%27s%20Razor%20and%20%40avinashkaushik%29%20to%20start%20this%20post.%0D%0AI%20have%20a%2010%2F90%20rule%20.%20If%20your%20budget%20is%20%24100%20then%20spend%20%2410%20on%20tools%20and%20professional%20services%20to%20implement%20them%2C%20and%20spend%20%2490%20on%20hiring%20people%20to%20analyze%20data%20you" title="Digg"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Culture%20of%20Performance" title="StumbleUpon"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Culture%20of%20Performance&amp;source=Newest+Industry+Web+Performance%2C+Branding%2C+and+Social+Media&amp;summary=A%20quote%20from%20Avinash%20Kaushik%20%28Occam%27s%20Razor%20and%20%40avinashkaushik%29%20to%20start%20this%20post.%0D%0AI%20have%20a%2010%2F90%20rule%20.%20If%20your%20budget%20is%20%24100%20then%20spend%20%2410%20on%20tools%20and%20professional%20services%20to%20implement%20them%2C%20and%20spend%20%2490%20on%20hiring%20people%20to%20analyze%20data%20you" title="LinkedIn"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Culture%20of%20Performance" title="Reddit"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Effective%20Web%20Performance%3A%20The%20Culture%20of%20Performance&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F" title="Slashdot"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvouz.com/action/submitBookmark?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Culture%20of%20Performance&amp;popup=no" title="Netvouz"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/netvouz.png" title="Netvouz" alt="Netvouz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F" title="Identi.ca"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F" title="Technorati"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F&amp;title=Effective%20Web%20Performance%3A%20The%20Culture%20of%20Performance&amp;notes=A%20quote%20from%20Avinash%20Kaushik%20%28Occam%27s%20Razor%20and%20%40avinashkaushik%29%20to%20start%20this%20post.%0D%0AI%20have%20a%2010%2F90%20rule%20.%20If%20your%20budget%20is%20%24100%20then%20spend%20%2410%20on%20tools%20and%20professional%20services%20to%20implement%20them%2C%20and%20spend%20%2490%20on%20hiring%20people%20to%20analyze%20data%20you" title="del.icio.us"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="mailto:?subject=Effective%20Web%20Performance%3A%20The%20Culture%20of%20Performance&amp;body=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-the-culture-of-performance%2F" title="email"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://newestindustry.org/2009/08/17/effective-web-performance-the-culture-of-performance/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Effective Web Performance: Positively Managing Performance Issues</title>
		<link>http://newestindustry.org/2009/08/17/effective-web-performance-positively-managing-performance-issues/</link>
		<comments>http://newestindustry.org/2009/08/17/effective-web-performance-positively-managing-performance-issues/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 12:00:58 +0000</pubDate>
		<dc:creator>smp</dc:creator>
				<category><![CDATA[Effective Web Performance]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Web Performance]]></category>
		<category><![CDATA[Web analytics]]></category>
		<category><![CDATA[Wireless]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[application/infrastructure/network]]></category>
		<category><![CDATA[Business/Finance]]></category>
		<category><![CDATA[Internet marketing]]></category>
		<category><![CDATA[internet performance]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[Marketing plan]]></category>
		<category><![CDATA[Mass media]]></category>
		<category><![CDATA[Network management]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[Telecommunications]]></category>
		<category><![CDATA[Web performance issue management plan]]></category>
		<category><![CDATA[Web performance measurement]]></category>

		<guid isPermaLink="false">http://newestindustry.org/?p=2568</guid>
		<description><![CDATA[
			
				
			
		
The moment a Web site goes live, the publishers lose control of the performance.
When I say lose control of the performance, I mean that despite everything that has been done to ensure scalability and capacity, the Web is inherently an infrastructure that is out of anyone&#8217;s direct ability to manage.
This is something that needs to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F&amp;source=spierzchala&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="Ciber Cafe" href="http://flickr.com/photos/70321513@N00/95757299"><img style="float:left;padding:6px;" src="http://farm1.static.flickr.com/21/95757299_4892de1bd1_m.jpg" alt="" /></a>The moment a Web site goes live, the publishers lose control of the performance.</p>
<p>When I say <em>lose control of the performance</em>, I mean that despite everything that has been done to ensure scalability and capacity, the Web is inherently an infrastructure that is out of anyone&#8217;s direct ability to manage.</p>
<p>This is something that needs to be accepted. And while the datacenter is only that part of an application/infrastructure/network that can be directly managed by the Web site&#8217;s owners, a company has to accept that the real datacenter is the Internet. Not a datacenter that is on the Internet; the Internet as the datacenter.</p>
<p>Now that your head is spinning, let&#8217;s step back and consider this idea for a minute. The whole concept of the Internet being the datacenter makes operations and IT folks very uncomfortable. Why? There is no way for one company to manage the Internet. As a result, the general perspective is that the Internet can&#8217;t be trusted, and all that can be done is manage what can be managed directly.</p>
<p>Ignoring the Internet allows many organizations to leave the entire Internet out of their application or performance planning. They will measure and monitor, and they may even employ third-parties to help improve performance. When the shiny exterior is peeled back, it&#8217;s pretty clear that <span style="background-color: #ffffff;">these organizations have built their entire performance culture on the assumption that if a problem exists on the Internet, there is nothing that can be done by them to fix it.</span></p>
<p>This may be effectively true. And it is not positive way to ensure effective Web performance</p>
<p>Having a <em>what-if</em>, emergency response plan in place is never a bad idea. If a problem appears on the Internet, and it affects <strong>your</strong> Web site, what are <strong>you</strong> going to do about it? Whine and moan and point fingers? Or take actions that effectively and clearly communicate to customers the steps <strong>you</strong> are taking to make things right?</p>
<p>Wait. Managing the Internet through customer communication?</p>
<p>I argue that besides working feverishly behind the scenes to resolve the problem, customer communication is the next most critical component of any Web performance issue management plan.</p>
<p>Web performance issue management plan. You have one, don&#8217;t you?</p>
<p>Well, when you get around to it, here are some concepts that should be built into the plan.</p>
<h3>Effectively monitor your site</h3>
<p>How can measurement and monitoring be part of issue management? Well, isn&#8217;t it <span style="background-color: #ffffff;">always good policy to detect and begin investigating problems before your customers do? </span></p>
<p><span style="background-color: #ffffff;">Key to the measurement plan is monitoring the parts of your application that customers use. A homepage test will not give you vital information on issues with your authentication process, and is the same as saying the car starts, while ignoring the four flat tires.</span></p>
<p>If you aren&#8217;t effectively monitoring your site, your business is at risk.</p>
<h3>Measure where the customers are</h3>
<p>If your organization is focused on what it can control, then it will want to measure from locations that are controlled, and can provide stable, consistent, repeatable data.</p>
<p>Hate to break this to you, Sparky, but my Internet connection isn&#8217;t an OC-48 provisioned through a large carrier with a written SLA. Real people have provider networks that are congested, under-built, and deliver bandwidth using the old <em>best effort</em> approach.</p>
<p>Some customers may have given up on wires altogether, and access the site through wireless broadband or mobile devices.</p>
<p>Understand how your customers use your site. Then plan your response to managing the Internet from the outside-in.</p>
<h3>Test with what your customers use</h3>
<p>The greatest cop-out any Web site can make is <em>Our site is best viewed using&#8230;</em></p>
<p>I&#8217;m sorry. This isn&#8217;t good enough.</p>
<p>Customers demand that your site work the way they want it to, not the other way around. If a customer wants to use Safari on a Mac, or Chromium on Linux, then understanding how the site performs and responds with these browsers is critical.</p>
<p>The one-browser/one-platform world no longer exists. If a large number of customers with one particular configuration indicate that they are having a problem with the new site, what is the proper reaction?</p>
<p>And why did this happen in the first place?</p>
<h3>Monitor and respond to social media</h3>
<p>No, this isn&#8217;t just here for buzzwords and SEO. In the last year, Twitter and Facebook have become the <em>de-facto</em> soapboxes for people who want to announce that their favorite site isn&#8217;t working. Wouldn&#8217;t hurt to monitor these sites for issues that might not be detected by traditional performance  monitoring.</p>
<p>This approach means that you have to be willing to accept responsibility when something affects your site performance or availability, <strong>even if it isn&#8217;t your fault</strong>. No need to tell folks exactly what the problem is, but acknowledging that there is a legitimate issue that you recognize will go a long way toward making visitors/customers more understanding of the situation.</p>
<h3>Get your message out effectively</h3>
<p>Communicating about a performance issue means that the Marketing and PR teams will have to be brought in.</p>
<p>What? Marketing and Operations/IT working together? Yes. In a situation where there is a major outage or issue, Marketing will <strong>DEMAND</strong> to be involved. Wouldn&#8217;t it be easier if these two parts of the organization knew each other and a plan for responding to critical performance issues?</p>
<p>If Marketing understands the degree of the problem, what it will take to fix, and what is being done about it, they can craft a message that handles any question that might come in, while acknowledging that there is an issue.</p>
<p>A corollary to this: If there is an issue, don&#8217;t deny it exists. Denying a problem when it clear to anyone using the site that there is one is worse than saying nothing at all.</p>
<h2>Takeaway</h2>
<p>Practicing effective Web performance means a company understands that directly managing the Internet is impossible, but having a process to respond to Internet performance issues is critical. A Web performance incident plan shows that you understand that <em>stuff happens</em> on the Internet and you&#8217;re working on it.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Spread the Love:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F&amp;t=Effective%20Web%20Performance%3A%20Positively%20Managing%20Performance%20Issues" title="Facebook"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Effective%20Web%20Performance%3A%20Positively%20Managing%20Performance%20Issues%20-%20http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F" title="Twitter"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F&amp;title=Effective%20Web%20Performance%3A%20Positively%20Managing%20Performance%20Issues&amp;body=The%20moment%20a%20Web%20site%20goes%20live%2C%20the%20publishers%20lose%20control%20of%20the%20performance.%0D%0A%0D%0AWhen%20I%20say%20lose%20control%20of%20the%20performance%2C%20I%20mean%20that%20despite%20everything%20that%20has%20been%20done%20to%20ensure%20scalability%20and%20capacity%2C%20the%20Web%20is%20inherently%20an%20infrastruct" title="Ping.fm"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F&amp;title=Effective%20Web%20Performance%3A%20Positively%20Managing%20Performance%20Issues&amp;bodytext=The%20moment%20a%20Web%20site%20goes%20live%2C%20the%20publishers%20lose%20control%20of%20the%20performance.%0D%0A%0D%0AWhen%20I%20say%20lose%20control%20of%20the%20performance%2C%20I%20mean%20that%20despite%20everything%20that%20has%20been%20done%20to%20ensure%20scalability%20and%20capacity%2C%20the%20Web%20is%20inherently%20an%20infrastruct" title="Digg"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F&amp;title=Effective%20Web%20Performance%3A%20Positively%20Managing%20Performance%20Issues" title="StumbleUpon"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F&amp;title=Effective%20Web%20Performance%3A%20Positively%20Managing%20Performance%20Issues&amp;source=Newest+Industry+Web+Performance%2C+Branding%2C+and+Social+Media&amp;summary=The%20moment%20a%20Web%20site%20goes%20live%2C%20the%20publishers%20lose%20control%20of%20the%20performance.%0D%0A%0D%0AWhen%20I%20say%20lose%20control%20of%20the%20performance%2C%20I%20mean%20that%20despite%20everything%20that%20has%20been%20done%20to%20ensure%20scalability%20and%20capacity%2C%20the%20Web%20is%20inherently%20an%20infrastruct" title="LinkedIn"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F&amp;title=Effective%20Web%20Performance%3A%20Positively%20Managing%20Performance%20Issues" title="Reddit"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Effective%20Web%20Performance%3A%20Positively%20Managing%20Performance%20Issues&amp;url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F" title="Slashdot"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.netvouz.com/action/submitBookmark?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F&amp;title=Effective%20Web%20Performance%3A%20Positively%20Managing%20Performance%20Issues&amp;popup=no" title="Netvouz"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/netvouz.png" title="Netvouz" alt="Netvouz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F" title="Identi.ca"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F" title="Technorati"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F&amp;title=Effective%20Web%20Performance%3A%20Positively%20Managing%20Performance%20Issues&amp;notes=The%20moment%20a%20Web%20site%20goes%20live%2C%20the%20publishers%20lose%20control%20of%20the%20performance.%0D%0A%0D%0AWhen%20I%20say%20lose%20control%20of%20the%20performance%2C%20I%20mean%20that%20despite%20everything%20that%20has%20been%20done%20to%20ensure%20scalability%20and%20capacity%2C%20the%20Web%20is%20inherently%20an%20infrastruct" title="del.icio.us"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="mailto:?subject=Effective%20Web%20Performance%3A%20Positively%20Managing%20Performance%20Issues&amp;body=http%3A%2F%2Fnewestindustry.org%2F2009%2F08%2F17%2Feffective-web-performance-positively-managing-performance-issues%2F" title="email"><img src="http://newestindustry.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://newestindustry.org/2009/08/17/effective-web-performance-positively-managing-performance-issues/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
