<?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>eCommerceCircle &#187; Performance</title>
	<atom:link href="http://www.ecommercecircle.com/tag/performance/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ecommercecircle.com</link>
	<description>E-Commerce Marketing Tips &#38; Tricks</description>
	<lastBuildDate>Fri, 27 Aug 2010 16:07:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>4 Quick Tips On How To Boost Magento&#8217;s Speed</title>
		<link>http://www.ecommercecircle.com/tips-how-to-boost-magento-speed_3913037.html</link>
		<comments>http://www.ecommercecircle.com/tips-how-to-boost-magento-speed_3913037.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 15:35:42 +0000</pubDate>
		<dc:creator>Michael J. Kaye</dc:creator>
				<category><![CDATA[Platform]]></category>
		<category><![CDATA[Apache HTTP Server]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Memory Based File Systems]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Speed]]></category>
		<category><![CDATA[TMPFS]]></category>
		<guid isPermaLink="false">http://www.ecommercecircle.com/?p=3913037</guid>
		<description><![CDATA[Magento is a great open source eCommerce platform. Merchants love it for it&#8217;s full feature set as well as it&#8217;s ability to add-on features via extensions. One issue that a lot of people run into is the page load speed. Magento is very picky about the server set up. Here are some tips to help [...]]]></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%2Fwww.ecommercecircle.com%2Ftips-how-to-boost-magento-speed_3913037.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ecommercecircle.com%2Ftips-how-to-boost-magento-speed_3913037.html&amp;source=eCommerceCircle&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignnone size-full wp-image-3913039" title="3380560365_e007c91946[1]" src="http://www.ecommercecircle.com/files/3380560365_e007c919461.jpg" alt="3380560365_e007c91946[1]" width="500" height="332" /></p>
<p>Magento is a great open source eCommerce platform. Merchants love it for it&#8217;s full feature set as well as it&#8217;s ability to <a href="http://www.ecommercecircle.com/magento-extensions-ecommerce-store_3912793.html">add-on features via extensions</a>. One issue that a lot of people run into is the page load speed. Magento is very picky about the server set up. Here are some tips to help boost the performance and speed of your Magento store.</p>
<h3 id="3913037_1-query-cache-size_1" >1 &#8212; Query Cache Size</h3>
<p>Change the default Query Cache Size, it should be 32 or 64mb.</p>
<blockquote><p><a href="http://www.magentocommerce.com/blog/performance-is-key-notes-on-magentos-performance">Magento Blog</a>: Modify the configuration for your MySQL server to take better advantage of your server&#8217;s RAM. Most Linux distributions provide a conservative MySQL package out of the box to ensure it will run on a wide array of hardware configurations. If you have ample RAM (eg, 1gb or more), then you may want to try tweaking the configuration. An example my.cnf is below, though you will want to consult the MySQL documentation for a complete list of configuration directives and recommended settings.</p></blockquote>
<p>Example my.cnf:</p>
<p><img class="alignnone size-large wp-image-3913036" title="example_cnf" src="http://www.ecommercecircle.com/files/example_cnf.jpg" alt="example_cnf" width="558" height="169" /></p>
<h3 id="3913037_2-disable-access-tim_1" >2 &#8212; Disable Access Time Logging</h3>
<blockquote><p><a href="http://www.magentocommerce.com/wiki/groups/168/optimising_your_web_stack_performance_for_magento">Magento Wiki</a>: For Linux servers, if you have access-time logging enabled on any of your mysql, web server or cache partitions, try turning it off for a performance boost. If you’re using ext3 or reiserfs there may be faster journal write methods you can use. For more information see <a href="http://www.linux.com/feature/116693">Linux.com</a>.</p></blockquote>
<h3 id="3913037_3-enable-keepalives-_1" >3 &#8212; Enable KeepAlives in Apache</h3>
<p>Make sure your Apache configuration has KeepAlives enabled. KeepAlives are a trick where multiple HTTP requests can be funneled through a single TCP connection. Since the setup of each TCP connection incurs additional time, this can significantly reduce the time it takes to download all the files (HTML, JavaScript, images) for a website. More information at <a href="http://httpd.apache.org/docs/2.2/mod/core.html#keepalive">Apache.org</a>.</p>
<h3 id="3913037_4-memory-based-file-_1" >4 &#8212; Memory Based File Systems</h3>
<p>Are you using a memory-based filesystem such as tmpfs? This helps Magento move faster because of all the reads/writes.</p>
<blockquote><p>Use a memory-based filesystem for Magento&#8217;s var directory. Magento makes extensive use of file-based storage for caching and session storage. The slowest component in a server is the hard drive, so if you use a memory-based filesystem such as tmpfs, you can save all those extra disk IO cycles by storing these temporary files in memory instead of storing them on your slow hard drive.</p></blockquote>
<p>For more in depth tips on how to boost performance on Magento, see the <a href="http://www.magentocommerce.com/blog/performance-is-key-notes-on-magentos-performance">Magento Blog</a>.</p>
<p>Image Credit: <a href="http://www.flickr.com/photos/7678790@N06">Viernest</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecommercecircle.com/tips-how-to-boost-magento-speed_3913037.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Measure Your Campaign Performance With Impression Share Report</title>
		<link>http://www.ecommercecircle.com/measure-campaign-performance-impression-share-report_3912597.html</link>
		<comments>http://www.ecommercecircle.com/measure-campaign-performance-impression-share-report_3912597.html#comments</comments>
		<pubDate>Wed, 29 Jul 2009 22:06:41 +0000</pubDate>
		<dc:creator>Michael J. Kaye</dc:creator>
				<category><![CDATA[Search Engine Marketing]]></category>
		<category><![CDATA[Google AdWords]]></category>
		<category><![CDATA[Impression Share]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Search Share Percentage]]></category>
		<guid isPermaLink="false">http://www.ecommercecircle.com/?p=3912597</guid>
		<description><![CDATA[Are you getting the most out of your keywords? Of the 100 people a day who search for Blueberry Pie, how many see your ad? There is an easy way to find out. Under the reports section in Google AdWords, when you run a Campaign Performance report, it gives you the ability to select additional [...]]]></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%2Fwww.ecommercecircle.com%2Fmeasure-campaign-performance-impression-share-report_3912597.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ecommercecircle.com%2Fmeasure-campaign-performance-impression-share-report_3912597.html&amp;source=eCommerceCircle&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_3912604" class="wp-caption alignnone" style="width: 510px"><a href="http://www.ecommercecircle.com/files/Impression-Share-Report.jpg"><img class="size-large wp-image-3912604" title="Impression-Share-Report" src="http://www.ecommercecircle.com/files/Impression-Share-Report-500x183.jpg" alt="Impression Share Report" width="500" height="183" /></a><p class="wp-caption-text">Impression Share Report</p></div>
<p>Are you getting the most out of your keywords? Of the 100 people a day who search for <em>Blueberry Pie</em>, how many see your ad? There is an easy way to find out.</p>
<p>Under the reports section in Google AdWords, when you run a Campaign Performance report, it gives you the ability to select additional columns to add to the report. One of those columns is Impression Share (IS) Percentage Report. Just check of the option and run the report, you will now see a column showing what percent market share you are reaching. Additional columns are Lost IS (Rank), Lost IS (Budget) and Exact Match IS. More info on these columns can be found <a href="http://www.searchviews.com/index.php/archives/2009/06/search-how-to-marketers-need-to-understand-google’s-share-of-voice-sov-reports.php">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecommercecircle.com/measure-campaign-performance-impression-share-report_3912597.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
