<?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>InfoTales &#187; Magento</title>
	<atom:link href="http://www.infotales.com/topic/magento/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.infotales.com</link>
	<description>Web application performance, Web Server Performance, Data Mining, SEO, MySQL, Magento Performance and much more</description>
	<lastBuildDate>Sat, 21 Jan 2012 14:51:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>Magento Performance: Manual Index Mode</title>
		<link>http://www.infotales.com/magento-performance-manual-index-mode/</link>
		<comments>http://www.infotales.com/magento-performance-manual-index-mode/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 04:18:59 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=1274</guid>
		<description><![CDATA[In default Magento installation, admin area is particularly slow. The reason for this is that admin area can&#8217;t use much cache and more database operations. After adding products it becomes even slower. Modifying or adding a new products becomes very slow. To over this and improve admin area performance we can disable automatic updating of [...]]]></description>
			<content:encoded><![CDATA[<p>In default Magento installation, admin area is particularly slow. The reason for this is that admin area can&#8217;t use much cache and more database operations. After adding products it becomes even slower. Modifying or adding a new products becomes very slow.<span id="more-1274"></span></p>
<p>To over this and improve admin area performance we can disable automatic updating of indexes. With default settings, when adding or modifying products, Magento have to update multiple indexes. These indexes may include &#8220;Product Attributes&#8221; index, &#8220;products prices&#8221; index and few others.</p>
<p>To avoid this, we can change the index update mode to manual. This will not update indexes automatically at time of modifying products, so the changes may not reflect on frontend. After modifying products admin will have to update these indexes manually.</p>
<p>Here is how you can change index update mode</p>
<ul>
<li>Login to admin area</li>
<li>Go to &#8220;Index Management&#8221; page through &#8220;System &gt; Index Management&#8221;</li>
<li>Select indexes you want to change. If you are not sure which one to select than select all.</li>
<li>Select &#8220;Change Index Mode&#8221; from &#8220;actions&#8221; drop down. Selecting this will show another dropdown &#8220;Index Mode&#8221;.<a href="http://www.infotales.com/wp-content/uploads/2011/04/index_update.gif"><img class="alignleft size-full wp-image-1275" title="index_update" src="http://www.infotales.com/wp-content/uploads/2011/04/index_update.gif" alt="" width="451" height="64" /></a></li>
<li>Select &#8220;Manual Update&#8221; from &#8220;Index Mode&#8221; dropdown.</li>
<li>Click &#8220;Submit&#8221; button.</li>
<li>You will see message like &#8220;Total of X index(es) have changed index mode.&#8221;</li>
</ul>
<p>This should make adding and modifying products significantly fast. Be careful that you update these indexes after modifying the products other wise your changes will not reflect on front end. Updating these indexes can be done from same page that is &#8220;Admin &gt; System &gt; Index Management&#8221; page.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fmagento-performance-manual-index-mode%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/magento-performance-manual-index-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Performance: Adding more MySQL Servers</title>
		<link>http://www.infotales.com/magento-performance-adding-mysql-servers/</link>
		<comments>http://www.infotales.com/magento-performance-adding-mysql-servers/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 14:49:33 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=969</guid>
		<description><![CDATA[Magento provides a really handy options to scale well. The feature which i am going to talk about is very little know. Magento allows to add mysql slave server to put load of &#8220;read&#8221; queries on different server. The mysql server has to do a lot of things like adding and updating records at high [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-978" title="Magento logo" src="http://www.infotales.com/wp-content/uploads/2010/06/magento_logo.jpg" alt="" width="118" height="37" /> Magento provides a really handy options to scale well. The feature which i am going to talk about is very little know. Magento allows to add mysql slave server to put load of &#8220;read&#8221; queries on different server.</p>
<p>The mysql server has to do a lot of things like adding and updating records at high frequency, manage locks, conflicts etc etc. If we can get our server free from read only queries it can perform updates and other operations at fast pace. MySQL provides feature of Master Slave replication for this purpose.<span id="more-969"></span></p>
<p>In master slave replication a server called Master takes care of all updates, schema changes etc etc and let other servers take care of queries which only need to read data. Once replication is set slave server keep its self synced with master (its enough to know at the moment, in some other post will explain master slave replication in detail).</p>
<p>Back to topic, we can add a slave server to share load with other server. To add read server in Magento you will need to edit the config file app/etc/local.xml. You will a block of &lt;default_setup&gt; in which details of main or master server are there. You can add new server by following code<br />
<code>&lt;default_read&gt;<br />
&lt;connection&gt;<br />
&lt;host&gt;&lt;![CDATA[host]]&gt;&lt;/host&gt;<br />
&lt;username&gt;&lt;![CDATA[useronslave]]&gt;&lt;/username&gt;<br />
&lt;password&gt;&lt;![CDATA[secret]]&gt;&lt;/password&gt;<br />
&lt;dbname&gt;&lt;![CDATA[dbname]]&gt;&lt;/dbname&gt;<br />
&lt;active&gt;1&lt;/active&gt;<br />
&lt;/connection&gt;<br />
&lt;/default_read&gt;</code></p>
<p>This will shift the load of read queries on slave server and give more space to breath on master server. For more refer to Magento&#8217;s official documentation.<a href="http://www.infotales.com/wp-content/uploads/2010/06/magento_logo.jpg"></a></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fmagento-performance-adding-mysql-servers%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/magento-performance-adding-mysql-servers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Magento Performance: Search Type Selection</title>
		<link>http://www.infotales.com/magento-performance-search-type-selection/</link>
		<comments>http://www.infotales.com/magento-performance-search-type-selection/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 16:01:36 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=766</guid>
		<description><![CDATA[Magento allows to configure multiple ways to search in catalog. For community edition these options are &#8220;Like&#8221;, &#8220;Fulltext&#8221; and &#8220;Combine&#8221;. Like is the default method selected, but this is not the best method and is more resource consuming. For better performance and results, &#8220;Fulltext&#8221; should be selected in this configuration. You can configure selection time [...]]]></description>
			<content:encoded><![CDATA[<p>Magento allows to configure multiple ways to search in catalog. For community edition these options are &#8220;Like&#8221;, &#8220;Fulltext&#8221; and &#8220;Combine&#8221;. Like is the default method selected, but this is not the best method and is more resource consuming.</p>
<p>For better performance and results, &#8220;Fulltext&#8221; should be selected in this configuration. You can configure selection time by going to System » Catalog » Catalog Search » Search Type in <a href="http://www.infotales.com/magento-performance-admin-area-on-separate-server/" target="_blank">Magento admin panel</a>.</p>
<p>Fulltext searching feature is implemented with mysql fulltext searching. Fulltext search allows to make complex search against any text.</p>
<p>For fulltext searching Magento uses separate index maintained in MyISAM engine as InnoDB engine does not support fulltext indexes. Once you have enabled fulltext searching you should ensure that &#8220;Catalog Search Index&#8221; index is up to date. This can be done from System» Index Management and clicking on &#8220;Reindex Data&#8221; against &#8220;Catalog Search Index&#8221;.</p>
<p>More on <a href="http://www.infotales.com/magento-performance/">Magento Performance</a></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fmagento-performance-search-type-selection%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/magento-performance-search-type-selection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Performance: Admin area on separate server</title>
		<link>http://www.infotales.com/magento-performance-admin-area-on-separate-server/</link>
		<comments>http://www.infotales.com/magento-performance-admin-area-on-separate-server/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 15:18:21 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=755</guid>
		<description><![CDATA[Magento provides a rich admin panel to manage all aspects of store(s). Admin panel operations are resource consuming because it does not use much cache etc. The pages also consume more memory. So its good idea to dedicate a separate web server for admin panel operations. This way one may customize certain setting for admin [...]]]></description>
			<content:encoded><![CDATA[<p>Magento provides a rich admin panel to manage all aspects of store(s). Admin panel operations are resource consuming because it does not use much cache etc. The pages also consume more memory.</p>
<p>So its good idea to dedicate a separate web server for admin panel operations. This way one may customize certain setting for admin area. This can be done by having a synced copy of Magento code on moth servers, and setting the admin url to new server. Option can also be configured during install.</p>
<p>More on <a href="http://www.infotales.com/magento-performance/">Magento Performance</a></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fmagento-performance-admin-area-on-separate-server%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/magento-performance-admin-area-on-separate-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Performance: Fine Tuning PHP Configurations</title>
		<link>http://www.infotales.com/magento-performance-fine-tuning-php-configurations/</link>
		<comments>http://www.infotales.com/magento-performance-fine-tuning-php-configurations/#comments</comments>
		<pubDate>Sat, 08 May 2010 07:07:07 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=718</guid>
		<description><![CDATA[There are few things which can be done in php configuration to help speed up Magento site. Realpath Cache: A lot of file I/O is done to run Magento site. This file I/O can be improved with faster hard disk. There is more can be done to improve this. PHP configuration allows to configure size [...]]]></description>
			<content:encoded><![CDATA[<p>There are few things which can be done in php configuration to help speed up Magento site.</p>
<h3>Realpath Cache:</h3>
<p>A lot of file I/O is done to run Magento site. This file I/O can be improved with faster hard disk. There is more can be done to improve this. PHP configuration allows to configure size of memory which can be used to cache realpaths, which help improve file I/O. The configuration is &#8220;realpath_cache_size&#8221;. Increase its value give more cache space.<br />
Also increase the value for &#8220;realpath_cache_ttl&#8221; to 3600 to 7200 to increase the time of cache.</p>
<h3>Memory Limit</h3>
<p>Also its good idea to increase page memory limit to be used by PHP. You can increase it by increasing value of &#8220;memory_limit&#8221; configuration.</p>
<h3>Remove unused extentions</h3>
<p>See if you disable any unused php extension to save some more memory. There few extension which are used by Magento in default installations. These include PDO_MYSQL, simplexml, mcrypt, hash, gd, dom, iconv2, SOAP (list may increase in case of more Magento extensions and features.). If server is running other site please check required extensions for those as well.</p>
<p>More on <a href="http://www.infotales.com/magento-performance/">Magento Performance</a></p>
<p><span style="color: #e7e7e7;">Disclaimer: Above recommendations are extracted based on &#8220;Magento Enterprise Edition Whitepaper&#8221; and my prior knowledge so no liabilities are accepted. Be sure the benchmark and adjust values according to your environment.</span></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fmagento-performance-fine-tuning-php-configurations%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/magento-performance-fine-tuning-php-configurations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Performance: Enable Flat Products and Categories</title>
		<link>http://www.infotales.com/magento-performance-enable-flat-products-categories/</link>
		<comments>http://www.infotales.com/magento-performance-enable-flat-products-categories/#comments</comments>
		<pubDate>Sun, 02 May 2010 13:46:48 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=689</guid>
		<description><![CDATA[One important feature Magento provides for improved performance is &#8220;Flat Products and Categories&#8221;. Magento stores data of single product in multiple tables. Like name is stored in catalog_product_entity_varchar table, id is stored in catalog_product_entity_int table, price is stored in catalog_product_entity_decimal table. Under this scheme, in order to fetch a product data must be fetched from [...]]]></description>
			<content:encoded><![CDATA[<p>One important feature Magento provides for improved performance is &#8220;Flat Products and Categories&#8221;. Magento stores data of single product in multiple tables. Like name is stored in catalog_product_entity_varchar table, id is stored in catalog_product_entity_int table, price is stored in catalog_product_entity_decimal table. Under this scheme, in order to fetch a product data must be fetched from these multiple tables. This cause queries to take much time as compared to having data in single table. Same goes for categories.</p>
<p>To overcome this disadvantage Magento can put all data in a separate single table and fetch it from there when needed. Using this can give significant improvement in performance for catalogs of 1000+ products.</p>
<p>Here is how you can enable this feature.<br />
First build or reindex &#8220;Product Flat Data&#8221; index from<br />
Admin Panel->System->Index Management and click &#8220;Reindex Data&#8221; against &#8220;Product Flat Data&#8221;. After building index go to Admin Panel -> System -> Configuration -> Frontend  and select &#8220;Yes&#8221; against &#8220;Use Flat Catalog Product&#8221;. You only need to enable this option once, but you may need to rebuild index data periodically unless &#8220;Index Mode&#8221; is set to &#8220;Update on Save&#8221;.</p>
<p>Same is to be done to enable flat categories.</p>
<p>More on <a href="http://www.infotales.com/magento-performance/">Magento Performance</a></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fmagento-performance-enable-flat-products-categories%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/magento-performance-enable-flat-products-categories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Perofrmance: Optimizing your MySQL server</title>
		<link>http://www.infotales.com/magento-perofrmance-optimizing-your-mysql-server/</link>
		<comments>http://www.infotales.com/magento-perofrmance-optimizing-your-mysql-server/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 13:30:58 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=649</guid>
		<description><![CDATA[This is the first of the series &#8220;Magento Performance&#8221;. In this post focus will be on tuning up MySQL server to make it optimal for Magento site. MySQL is most potential area for optimization. Optimizing its configuration can give good boost in performance. There are several configurations which should be considered. Memory Magento uses InnoDB [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first of the series &#8220;Magento Performance&#8221;. In this post focus will be on tuning up MySQL server to make it optimal for Magento site. MySQL is most potential area for optimization. Optimizing its configuration can give good boost in performance.</p>
<p>There are several configurations which should be considered.</p>
<ul>
<li><strong>Memory</strong><br />
Magento uses InnoDB storage engine which, uses memory pools to cache tables data, indexes to reduce disk I/O. Less disk I/O means faster access to data, indexes etc.</p>
<p>The key is to assign as much memory as possible for in-memory cache. By default this value is 8MB which is very small. This value can be increased by setting &#8220;innodb_buffer_pool_size&#8221; variable in my.cnf. On normal servers running web and database server, with 1GB RAM the value should be set to  256MB or 512MB. If server is only running database server than this value should not be less than 512MB.</li>
<li><strong>Multi-threading</strong><br />
Innodb can use multiple cores of server processors to give concurrent connection. The key is to use this ability to boost concurrent connections. This can be achieved by configuring &#8220;innodb_thread_concurrency&#8221;, &#8220;thread_cache_size&#8221; variables properly.</p>
<p>Magento recommends to calculate &#8220;innodb_thread_concurrency&#8221; value by equation &#8220;2 x [# of CPUs] + 2&#8243;. So on a server with 4 cores the value should be 10. The &#8220;thread_cache_size&#8221; allows to cache one client&#8217;s thread to be cached and used for another client after first is disconnected. This value can also be configured, but its value depends on &#8220;max_connections&#8221;.<br />
This is complex setting so seek mysql expert opinion and benchmark performance for setting it.</li>
<li><strong>Enable Query Cache</strong><br />
MySQL can cache results for queries and return it from cache, when identical query is done. For example queries running for home page will be almost identical for another home page view. Enabling the cache can save a lot of rework on MySQL end.</p>
<p>The cache can be enabled by setting &#8220;query_cache_size&#8221; variable. At least this value should be set equivalent to 32MB to 64MB in bytes. Setting this value can be tricky as available resources very in each environment, so be sure to benchmark and test before finalizing.</li>
<li><strong>Enable Sort Buffer</strong><br />
Sort buffer is used to optimize sorting in ORDER BY and GROUP BY clause queries. Make sure that this buffer is enabled. Recommended value is 2MB to 6MB. This will speed up queries involving sort and GROUP BY.</li>
</ul>
<p>More on <a href="http://www.infotales.com/magento-performance/">Magento Performance</a></p>
<p><span style="color: #e7e7e7;">Disclaimer: Above recommendations are extracted based on &#8220;Magento Enterprise Edition Whitepaper&#8221; and my prior knowledge so no liabilities are accepted. Be sure the benchmark and adjust values according to your environment.</span></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fmagento-perofrmance-optimizing-your-mysql-server%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/magento-perofrmance-optimizing-your-mysql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento performance</title>
		<link>http://www.infotales.com/magento-performance/</link>
		<comments>http://www.infotales.com/magento-performance/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 15:41:34 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=639</guid>
		<description><![CDATA[Magento performance is really a difficult topic to write about. Performance has been in discussion and under a lot of criticism since the start. In my opinion its performance has been under heavy criticism unjustifiably, because there are a lot of rich features which come at some cost. Magento is continuously improving on performance, and [...]]]></description>
			<content:encoded><![CDATA[<p>Magento performance is really a difficult topic to write about. Performance has been in discussion and under a lot of criticism since the start.</p>
<p>In my opinion its performance has been under heavy criticism unjustifiably, because there are a lot of rich features which come at some cost. Magento is continuously improving on performance, and have come along way on from it initial releases.</p>
<p>It provides a lot of features and guidelines to make a Magento site faster like multilevel cache, indexing etc etc. Due to lack of knowledge about these features, many small and medium vendors hesitate migrating to it.</p>
<p>I thought its a good idea to write about different optimization techniques which make Magento faster.<br />
Here are links for posts of this series:</p>
<ol>
<li><a href="http://www.infotales.com/magento-perofrmance-optimizing-your-mysql-server/">Optimizing your MySQL server</a></li>
<li><a href="http://www.infotales.com/magento-performance-enable-flat-products-categories/">Enable Flat Products and Categories</a></li>
<li><a href="http://www.infotales.com/magento-performance-fine-tuning-php-configurations/">Fine Tuning PHP Configurations</a></li>
<li><a href="http://www.infotales.com/magento-performance-admin-area-on-separate-server/">Admin area on separate server</a></li>
<li><a href="http://www.infotales.com/magento-performance-search-type-selection/">Search Type Selection</a></li>
<li><a href="http://www.infotales.com/magento-performance-adding-mysql-servers/">Adding more MySQL Servers</a></li>
<li><a href="http://www.infotales.com/magento-performance-manual-index-mode/">Speed up admin area with Manual Index Mode</a></li>
</ol>
<p>Stay tuned for more in this series to make your faster. Remember faster sites create happier customers.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fmagento-performance%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/magento-performance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Magento introduces Solr in new Enterprise Edition 1.8</title>
		<link>http://www.infotales.com/magento-introduces-solr-in-new-enterprise-edition-1-8/</link>
		<comments>http://www.infotales.com/magento-introduces-solr-in-new-enterprise-edition-1-8/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 13:44:11 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=629</guid>
		<description><![CDATA[Magento&#8217;s Enterprise Edition 1.8 is released. One interesting feature it introduces is &#8220;Solr&#8221; for full text searching. Solr is open source, very fast full text search engine from Apache project. More Solr features include hit highlighting, clustering, db integration, faceted search, and rich document (e.g., Word, PDF) handling. Solr is very similar to SPHINX. You [...]]]></description>
			<content:encoded><![CDATA[<p>Magento&#8217;s Enterprise Edition 1.8 is released. One interesting feature it introduces is &#8220;Solr&#8221; for full text searching. Solr is open source, very fast full text search engine from Apache project. More Solr features include hit highlighting, clustering, db integration, faceted search, and rich document (e.g., Word, PDF) handling.</p>
<p>Solr is very similar to <a href="http://www.infotales.com/topic/sphinx/">SPHINX</a>. You can find more about Solr at http://lucene.apache.org/solr/ and to find more excited features of new <a href="http://www.infotales.com/topic/magento/">Magento</a> see http://www.magentocommerce.com/.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fmagento-introduces-solr-in-new-enterprise-edition-1-8%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/magento-introduces-solr-in-new-enterprise-edition-1-8/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I Have 4294967293 private messages on Magento forum. Really?</title>
		<link>http://www.infotales.com/have-4294967293-private-messages-on-magento-forum/</link>
		<comments>http://www.infotales.com/have-4294967293-private-messages-on-magento-forum/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 15:07:48 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=615</guid>
		<description><![CDATA[Have anyone ever got 4294967293 private message on a single forum? I am certain that no one have got this much messages. Recently my account link in Magento forum showed me that I have 4294967293 messages in my inbox (see the image). Actually there were no messages at all. This is probably due to invalid [...]]]></description>
			<content:encoded><![CDATA[<p>Have anyone ever got 4294967293 private message on a single forum? I am certain that no one have got this much messages.<br />
Recently my account link in Magento forum showed me that I have 4294967293 messages in my inbox (see the image).</p>
<p><a href="http://www.infotales.com/wp-content/uploads/2010/04/bug.gif"><img src="http://www.infotales.com/wp-content/uploads/2010/04/bug.gif" alt="" title="Magento bug" width="640" height="236" class="alignnone size-full wp-image-619" /></a></p>
<p>Actually there were no messages at all. This is probably due to invalid division or conversion.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fhave-4294967293-private-messages-on-magento-forum%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/have-4294967293-private-messages-on-magento-forum/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

