<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>performance Archives - Michael Sunarlim</title>
	<atom:link href="https://sunarlim.com/tag/performance/feed/" rel="self" type="application/rss+xml" />
	<link>https://sunarlim.com/tag/performance/</link>
	<description>Random blurbs about web development, e-commerce and technology</description>
	<lastBuildDate>Wed, 27 Jan 2016 09:02:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.5</generator>

<image>
	<url>https://i0.wp.com/sunarlim.com/wp-content/uploads/2016/07/cropped-MS_Square_512x512.png?fit=32%2C32&#038;ssl=1</url>
	<title>performance Archives - Michael Sunarlim</title>
	<link>https://sunarlim.com/tag/performance/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">30613895</site>	<item>
		<title>How to enable browser caching &#038; gzip compression on Apache webserver</title>
		<link>https://sunarlim.com/2016/01/how-to-enable-browser-caching-gzip-compression-on-apache/</link>
					<comments>https://sunarlim.com/2016/01/how-to-enable-browser-caching-gzip-compression-on-apache/#respond</comments>
		
		<dc:creator><![CDATA[Michael]]></dc:creator>
		<pubDate>Wed, 27 Jan 2016 08:57:51 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[performance]]></category>
		<guid isPermaLink="false">https://sunarlim.com/?p=1780</guid>

					<description><![CDATA[<p>Page speed is vital for SEO. The faster your website or web page loads, the better chance of it having better position in the search results. There are 2 most essential components that you need to be sure have been implemented on your website or server. They take only a few minutes to set up but give the most noticeable impact to the site's performance.</p>
<p>The post <a href="https://sunarlim.com/2016/01/how-to-enable-browser-caching-gzip-compression-on-apache/">How to enable browser caching &#038; gzip compression on Apache webserver</a> appeared first on <a href="https://sunarlim.com">Michael Sunarlim</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Page speed is vital for SEO. The faster your website or web page loads, the better chance of it having better position in the search results. To measure and get guideline on what to be done to get faster website, you can use online tools like <a href="https://developers.google.com/speed/pagespeed/insights/" target="_blank">Google PageSpeed Insights</a>, <a href="https://gtmetrix.com/" target="_blank">GTMetrix</a> or <a href="http://www.webpagetest.org/" target="_blank">WebPagetest</a>.</p>
<p>Each tool will probably give you a handful of suggestions in how to improve your site&#8217;s speed. However there are 2 most essential components that you need to be sure have been implemented on your website or server. They take only a few minutes to set up but give the most noticeable impact to the site&#8217;s performance.</p>
<p>If you are using Apache webserver, below are the instructions to add them.</p>
<h2>Enable browser caching</h2>
<p>Add this into your <code>.htaccess</code> file:</p>
<pre class="lang:apache decode:true">## ADD BROWSER CACHING ##
&lt;IfModule mod_expires.c&gt;
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
&lt;/IfModule&gt;</pre>
<h2>Enable gzip compression</h2>
<p>Add this into your <code>.htaccess</code> file:</p>
<pre class="lang:apache decode:true ">## ADD GZIP COMPRESSION ##
SetOutputFilter DEFLATE
AddOutputFilterByType DEFLATE text/html text/css text/plain text/xml text/javascript application/x-javascript application/x-httpd-php
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip
Header append Vary User-Agent env=!dont-vary</pre>
<p>Sometimes due to the server&#8217;s configuration, the gzip compression works on every other file except CSS and JS files. If this happens, you could try adding this before the <code>## ADD GZIP COMPRESSION ##</code>:</p>
<pre class="lang:apache decode:true ">## TYPES FIX ##
AddType text/css .css
AddType text/javascript .js</pre>
<p>&nbsp;</p>
<p>That&#8217;s it. Give the site another test on page speed tools and see how much the score has improved.</p>
<p>The post <a href="https://sunarlim.com/2016/01/how-to-enable-browser-caching-gzip-compression-on-apache/">How to enable browser caching &#038; gzip compression on Apache webserver</a> appeared first on <a href="https://sunarlim.com">Michael Sunarlim</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sunarlim.com/2016/01/how-to-enable-browser-caching-gzip-compression-on-apache/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1780</post-id>	</item>
		<item>
		<title>WordPress Plugins to Increase Your Blog SEO</title>
		<link>https://sunarlim.com/2014/11/wordpress-plugins-increase-blog-seo/</link>
					<comments>https://sunarlim.com/2014/11/wordpress-plugins-increase-blog-seo/#respond</comments>
		
		<dc:creator><![CDATA[Michael]]></dc:creator>
		<pubDate>Wed, 12 Nov 2014 11:28:57 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[plugins]]></category>
		<guid isPermaLink="false">https://sunarlim.com/?p=1228</guid>

					<description><![CDATA[<p>Out of the box, WordPress is already great in terms of SEO. Set up your blog, use a well-built theme, consistently publish new posts, then you are very likely to see traffic to your site. Taking the last word from Search Engine Optimization, there is no end result to it really. You can keep on... <span class="more"><a class="more-link" href="https://sunarlim.com/2014/11/wordpress-plugins-increase-blog-seo/">Continue reading <span class="meta-nav">&#8594;</span></a></span></p>
<p>The post <a href="https://sunarlim.com/2014/11/wordpress-plugins-increase-blog-seo/">WordPress Plugins to Increase Your Blog SEO</a> appeared first on <a href="https://sunarlim.com">Michael Sunarlim</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Out of the box, WordPress is already great in terms of SEO. Set up your blog, use a well-built theme, consistently publish new posts, then you are very likely to see traffic to your site. Taking the last word from Search Engine <em>Optimization</em>, there is no end result to it really. You can keep on experimenting and adding new functionalities to increase your search visibility.</p>
<p>There are tons of WordPress plugins out there and for different purposes. Most are designed to add new features or integrations with other services, some to make it looks nicer, and so on. Below I am going to list a number of plugins that will help to increase your SEO score.</p>
<hr />
<h3><a title="WordPress Plugins » WordPress SEO by Yoast" href="https://wordpress.org/plugins/wordpress-seo/" target="_blank">WordPress SEO by Yoast</a></h3>
<p><a title="WordPress Plugins » WordPress SEO by Yoast" href="https://wordpress.org/plugins/wordpress-seo/" target="_blank"><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-1234" src="https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-wordpress-seo-yoast-772x250.png?resize=740%2C240&#038;ssl=1" alt="WordPress SEO by Yoast" width="740" height="240" srcset="https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-wordpress-seo-yoast-772x250.png?resize=772%2C250&amp;ssl=1 772w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-wordpress-seo-yoast-772x250.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-wordpress-seo-yoast-772x250.png?resize=150%2C48&amp;ssl=1 150w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-wordpress-seo-yoast-772x250.png?resize=400%2C129&amp;ssl=1 400w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-wordpress-seo-yoast-772x250.png?resize=200%2C64&amp;ssl=1 200w" sizes="(max-width: 740px) 100vw, 740px" data-recalc-dims="1" /></a></p>
<p><strong>What does it do?</strong><br />
A lot. This is the top plugin in the category, not only to improve your blog&#8217;s SEO, but also to expand your understanding about SEO. Its one of the most important features is that you will be able to set different meta title and description which will be displayed on the search engine results. It also helps you in reviewing the content of you post with a targeted keyword or keyphrase.</p>
<p><strong>Why does it matter?</strong><br />
Basic SEO practices encourage you to optimize your meta information to help search engines to display a more relevant preview of the page they are crawling. That aside, if you follow all other tools available from this great plugin, you are already improving your blog SEO a few levels.</p>
<p><a title="WordPress Plugins » WordPress SEO by Yoast" href="https://wordpress.org/plugins/wordpress-seo/" target="_blank"><i class="fa fa-wordpress " ></i> Go to WordPress SEO by Yoast Plugin Page</a></p>
<hr />
<h3><a title="WordPress Plugins » W3 Total Cache" href="https://wordpress.org/plugins/w3-total-cache/" target="_blank">W3 Total Cache</a></h3>
<p><a title="WordPress Plugins » W3 Total Cache" href="https://wordpress.org/plugins/w3-total-cache/" target="_blank"><img decoding="async" class="alignnone size-full wp-image-1233" src="https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-w3-total-cache-772x250.jpg?resize=740%2C240&#038;ssl=1" alt="W3 Total Cache" width="740" height="240" srcset="https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-w3-total-cache-772x250.jpg?resize=772%2C250&amp;ssl=1 772w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-w3-total-cache-772x250.jpg?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-w3-total-cache-772x250.jpg?resize=150%2C48&amp;ssl=1 150w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-w3-total-cache-772x250.jpg?resize=400%2C129&amp;ssl=1 400w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-w3-total-cache-772x250.jpg?resize=200%2C64&amp;ssl=1 200w" sizes="(max-width: 740px) 100vw, 740px" data-recalc-dims="1" /></a></p>
<p><strong>What does it do?</strong><br />
It helps improving your blog performance through many methods without actually having you to move to a bigger hosting. At its heart is the caching tools that will reduce the time and resources to generate your web pages.</p>
<p><strong>Why does it matter?</strong><br />
Search engines love sites that load fast. Reducing your page load will certainly increase your SEO score.</p>
<p><a title="WordPress Plugins » W3 Total Cache" href="https://wordpress.org/plugins/w3-total-cache/" target="_blank"><i class="fa fa-wordpress " ></i> Go to W3 Total Cache Plugin Page</a></p>
<hr />
<h3><a title="WordPress Plugins » Akismet" href="https://wordpress.org/plugins/akismet/" target="_blank">Akismet</a></h3>
<p><a title="WordPress Plugins » Akismet" href="https://wordpress.org/plugins/akismet/" target="_blank"><img decoding="async" class="alignnone size-full wp-image-1231" src="https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-akismet-772x250.jpg?resize=740%2C240&#038;ssl=1" alt="Akismet" width="740" height="240" srcset="https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-akismet-772x250.jpg?resize=772%2C250&amp;ssl=1 772w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-akismet-772x250.jpg?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-akismet-772x250.jpg?resize=150%2C48&amp;ssl=1 150w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-akismet-772x250.jpg?resize=400%2C129&amp;ssl=1 400w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-akismet-772x250.jpg?resize=200%2C64&amp;ssl=1 200w" sizes="(max-width: 740px) 100vw, 740px" data-recalc-dims="1" /></a></p>
<p><strong>What does it do?</strong><br />
Coming from the same company who brought us WordPress itself, Akismet is a web service that checks comments made on your blog for spam.</p>
<p><strong>Why does it matter?</strong><br />
The biggest reason people or bots are spamming on people&#8217;s blogs to get backlinks to their sites, which mostly are shady. Getting spam comments on your blog means having backlinks to questionable websites and URLs, which search engines do not like. By freeing your blog, or at least reducing the number of spam comments, your blog will look more legitimate.</p>
<p><a title="WordPress Plugins » Akismet" href="https://wordpress.org/plugins/akismet/" target="_blank"><i class="fa fa-wordpress " ></i> Go to Akismet Plugin Page</a></p>
<hr />
<h3><a title="WordPress Plugins » Yet Another Related Posts Plugin (YARPP)" href="https://wordpress.org/plugins/yet-another-related-posts-plugin/" target="_blank">Yet Another Related Posts Plugin (YARPP)</a></h3>
<p><a title="WordPress Plugins » Yet Another Related Posts Plugin (YARPP)" href="https://wordpress.org/plugins/yet-another-related-posts-plugin/" target="_blank"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1235" src="https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-yarpp-772x250.png?resize=740%2C240&#038;ssl=1" alt="YARPP" width="740" height="240" srcset="https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-yarpp-772x250.png?resize=772%2C250&amp;ssl=1 772w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-yarpp-772x250.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-yarpp-772x250.png?resize=150%2C48&amp;ssl=1 150w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-yarpp-772x250.png?resize=400%2C129&amp;ssl=1 400w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-yarpp-772x250.png?resize=200%2C64&amp;ssl=1 200w" sizes="(max-width: 740px) 100vw, 740px" data-recalc-dims="1" /></a></p>
<p><strong>What does it do?</strong><br />
As the name says, this plugin allows WordPress to automatically generate related posts to the one your visitors are reading. There are lots of similar plugins of course, but YARPP is most of the most popular.</p>
<p><strong>Why does it matter?</strong><br />
Placing internal links to other posts helps search engines to index other pages on your blog and a suggested SEO practice.</p>
<p><a title="WordPress Plugins » Yet Another Related Posts Plugin (YARPP)" href="https://wordpress.org/plugins/yet-another-related-posts-plugin/" target="_blank"><i class="fa fa-wordpress " ></i> Go to Yet Another Related Posts Plugin (YARPP) Plugin Page</a></p>
<hr />
<h3><a title="WordPress Plugins » Google XML Sitemaps" href="https://wordpress.org/plugins/google-sitemap-generator/" target="_blank">Google XML Sitemaps</a></h3>
<p><a title="WordPress Plugins » Google XML Sitemaps" href="https://wordpress.org/plugins/google-sitemap-generator/" target="_blank"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1232" src="https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-google-xml-sitemaps-772x250.png?resize=740%2C240&#038;ssl=1" alt="Google XML Sitemaps" width="740" height="240" srcset="https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-google-xml-sitemaps-772x250.png?resize=772%2C250&amp;ssl=1 772w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-google-xml-sitemaps-772x250.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-google-xml-sitemaps-772x250.png?resize=150%2C48&amp;ssl=1 150w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-google-xml-sitemaps-772x250.png?resize=400%2C129&amp;ssl=1 400w, https://i0.wp.com/sunarlim.com/wp-content/uploads/2014/11/wp-seo-google-xml-sitemaps-772x250.png?resize=200%2C64&amp;ssl=1 200w" sizes="(max-width: 740px) 100vw, 740px" data-recalc-dims="1" /></a></p>
<p><strong>What does it do?</strong><br />
It can automatically generate XML sitemap of your blog. It offers quite extensive settings so you can select categories to be excluded, post types and so on. Note that <a href="https://wordpress.org/plugins/wordpress-seo/" target="_blank">WordPress SEO by Yoast</a> has this feature built-in and just as good, but in case for some reason you do not want to install that, then this one is a must.</p>
<p><strong>Why does it matter?</strong><br />
XML sitemap is the &#8216;map&#8217; for search engines to crawl the information your blog. Have it constantly updated, then you will be sure to have all your pages and posts indexed.</p>
<p><a title="WordPress Plugins » Google XML Sitemaps" href="https://wordpress.org/plugins/google-sitemap-generator/" target="_blank"><i class="fa fa-wordpress " ></i> Go to Google XML Sitemaps Plugin Page</a></p>
<hr />
<p>There are probably still dozens of other plugins that can push your SEO quality and I only share ones I use and can recommend. Feel free to share your favorites by posting your comments below.</p>
<p>The post <a href="https://sunarlim.com/2014/11/wordpress-plugins-increase-blog-seo/">WordPress Plugins to Increase Your Blog SEO</a> appeared first on <a href="https://sunarlim.com">Michael Sunarlim</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sunarlim.com/2014/11/wordpress-plugins-increase-blog-seo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1228</post-id>	</item>
		<item>
		<title>WebPagetest &#8211; Website Performance and Optimization Test</title>
		<link>https://sunarlim.com/2013/02/webpagetest-website-performance-and-optimization-test/</link>
					<comments>https://sunarlim.com/2013/02/webpagetest-website-performance-and-optimization-test/#respond</comments>
		
		<dc:creator><![CDATA[Michael]]></dc:creator>
		<pubDate>Tue, 19 Feb 2013 13:25:16 +0000</pubDate>
				<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[performance]]></category>
		<guid isPermaLink="false">https://sunarlim.com/?p=645</guid>

					<description><![CDATA[<p>webpagetest.org Great tool to benchmark your web page performance and load time.</p>
<p>The post <a href="https://sunarlim.com/2013/02/webpagetest-website-performance-and-optimization-test/">WebPagetest &#8211; Website Performance and Optimization Test</a> appeared first on <a href="https://sunarlim.com">Michael Sunarlim</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://www.webpagetest.org">webpagetest.org</a></p>
<p>Great tool to benchmark your web page performance and load time.</p>
<p>The post <a href="https://sunarlim.com/2013/02/webpagetest-website-performance-and-optimization-test/">WebPagetest &#8211; Website Performance and Optimization Test</a> appeared first on <a href="https://sunarlim.com">Michael Sunarlim</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sunarlim.com/2013/02/webpagetest-website-performance-and-optimization-test/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">645</post-id>	</item>
	</channel>
</rss>
