<?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>Top Web Resources &#187; Web Host</title>
	<atom:link href="http://www.iyiz.com/tag/web-host/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iyiz.com</link>
	<description>iyiz.com</description>
	<lastBuildDate>Tue, 10 Jan 2012 14:30:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Top 5 Optimization Tips for Web-Servers</title>
		<link>http://www.iyiz.com/top-5-optimization-tips-for-web-servers/</link>
		<comments>http://www.iyiz.com/top-5-optimization-tips-for-web-servers/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 12:14:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Tricks-Tips]]></category>
		<category><![CDATA[DNS Lookups]]></category>
		<category><![CDATA[GZip]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[Optimization for Web-Servers]]></category>
		<category><![CDATA[Web Host]]></category>
		<category><![CDATA[Web-Servers]]></category>

		<guid isPermaLink="false">http://www.iyiz.com/?p=218</guid>
		<description><![CDATA[5 Optimization tips for your web-server to gain more speed,money you can save, and how it can potentially help increase your readership and traffic when they are properly done. Choose a decent Web Host Your web hosting account has no direct relationship with the optimizations you are about to perform but we figured choosing the [...]]]></description>
			<content:encoded><![CDATA[<p>5 Optimization tips for your web-server to gain more speed,money you can save, and how it can potentially help increase your readership and traffic when they are properly done.</p>
<p><span id="more-218"></span></p>
<ol>
<li>
<h4>Choose a decent Web Host</h4>
<p>Your web hosting account has no direct relationship with the optimizations you are about to perform but we figured choosing the right web hosting account so important we decided to bring it to your attention first. Hosting account is the foundation of your website/blog where it’s security, accessibility (cPanel, FTP, SSH), server stability, prices and customer supports all play important roles. You need to make sure you are in good hands.</p>
<p><strong>Recommended reading:<br />
<a href="http://www.wikihow.com/Choose-a-Web-Host">How to Choose a Web Host</a></strong> by <strong>wikiHow</strong> is a great article that gives you steps and tips you should know before purchasing any web hosting account.</li>
<li>
<h4>Host Assets Separately</h4>
<p>When we mention assets, we meant web components like <strong>images</strong> and <strong>static scripts</strong> that don’t require server-side processing. These includes any web graphics, images, Javascripts, Cascading Style Sheets (CSS), etc. Hosting assets separately is not a must, but we’ve seen tremendous result in terms of server stability with this implementation when the blog was having a traffic spike.</p>
<p><strong>Recommended reading</strong>: <strong><br />
<a href="http://yuiblog.com/blog/2007/04/11/performance-research-part-4/">Maximizing Parallel Downloads in the Carpool Lane.</a></strong></li>
<li>
<h4>Compression with GZip</h4>
<p>In short, contents travel from server side to client side (vicet versa) whenever a HTTP request is make. Compressing the content for sending greatly reduce the time needed to process each request.</p>
<p><strong><a href="http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/">GZip</a></strong> is one of the best ways to do this and it various according to the type of servers you are using. For instance, <strong>Apache 1.3</strong> uses <a href="http://sourceforge.net/projects/mod-gzip/">mod_zip</a>, <strong>Apache 2.x</strong> uses <a href="http://httpd.apache.org/docs/2.0/mod/mod_deflate.html">mod_deflate</a> and <a href="http://forum.slicehost.com/comments.php?DiscussionID=1861">here</a>’s how you do it in <strong>Nginx</strong>. Here are some really good articles to get you familiar with server side compressions:</p>
<ul>
<li><a href="http://nadeausoftware.com/node/33"><strong>Speed up a web site by enabling Apache file compression</strong></a></li>
<li><a href="http://www.sitepoint.com/article/web-output-mod_gzip-apache/"><strong>Compress Web Output Using mod_gzip and Apache</strong></a></li>
<li><a href="http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/"><strong>How To Optimize Your Site With GZIP Compression</strong></a></li>
<li><a href="http://www.planet-source-code.com/vb/scripts/ShowCode.asp?lngWId=4&amp;txtCodeId=6182"><strong>Server-side compression for ASP</strong></a></li>
</ul>
</li>
<li>
<h4>Minimize Redirects</h4>
<p>Webmasters do URL redirect (whether it’s Javascript or META redirects) all the time. Sometimes it’s purpose is to point users from an old page to new, or merely guide users to the correct page. Each redirect create an additional HTTP request and <a href="http://searchnetworking.techtarget.com/sDefinition/0,,sid7_gci1250602,00.html">RTT</a> (round-trip-time). The more redirection you have, the slower user will get to the destination page.</p>
<p><strong>Recommended reading</strong>: <a href="http://code.google.com/speed/page-speed/docs/rtt.html#AvoidRedirects"><br />
<strong>Avoid Redirects</strong></a> by Google Code gives you a good overview on the matter. The article also recommends some practical ways to minimize redirection to increase serving speed.</li>
<li>
<h4>Reduce DNS Lookups</h4>
<p>According to <strong>Yahoo! Developer Network Blog</strong>, it takes about 20-120 milliseconds for DNS (Domain Name System) to resolve IP address for a given hostname or domain name and the browser cannot do anything until the process is properly completed.</p>
<p>Author <em>Steve Souders</em> suggested that splitting these components across at least two but no more than four hostnames reduces DNS lookups and allow high degree parallel downloads. <a href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_7.html"><strong>Read more</strong></a> on the article.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.iyiz.com/top-5-optimization-tips-for-web-servers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

