<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: High Performance MySQL: Optimization, Backups, Replication, and More</title>
	<atom:link href="http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/</link>
	<description>Everything You Need To Know About Software.</description>
	<lastBuildDate>Fri, 04 Nov 2011 09:30:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Michael T. Saldivar</title>
		<link>http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/#comment-817</link>
		<dc:creator>Michael T. Saldivar</dc:creator>
		<pubDate>Mon, 08 Feb 2010 06:07:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/#comment-817</guid>
		<description>For weeks, I&#039;d been searching online, trying to find out what MySQL&#039;s slow queries log actually was.  Eventually I found it.
&lt;br /&gt;
&lt;br /&gt;And then I got this book, and there was an even better description than what I&#039;d found in MySQL&#039;s online documentation.
&lt;br /&gt;
&lt;br /&gt;I swear, after I&#039;ve worked my way through this book, if I don&#039;t double my wages, I&#039;ll be a monkey&#039;s uncle.
</description>
		<content:encoded><![CDATA[<p>For weeks, I&#8217;d been searching online, trying to find out what MySQL&#8217;s slow queries log actually was.  Eventually I found it.</p>
<p>And then I got this book, and there was an even better description than what I&#8217;d found in MySQL&#8217;s online documentation.</p>
<p>I swear, after I&#8217;ve worked my way through this book, if I don&#8217;t double my wages, I&#8217;ll be a monkey&#8217;s uncle.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: F. Levanti</title>
		<link>http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/#comment-816</link>
		<dc:creator>F. Levanti</dc:creator>
		<pubDate>Mon, 08 Feb 2010 03:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/#comment-816</guid>
		<description>A good book for developers that want more. They want to optimize their scripts and really understand how MYSQL works also behind the scene.
&lt;br /&gt;
&lt;br /&gt;A must have book
&lt;br /&gt;
&lt;br /&gt;
</description>
		<content:encoded><![CDATA[<p>A good book for developers that want more. They want to optimize their scripts and really understand how MYSQL works also behind the scene.</p>
<p>A must have book</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marinko Tarlac</title>
		<link>http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/#comment-815</link>
		<dc:creator>Marinko Tarlac</dc:creator>
		<pubDate>Mon, 08 Feb 2010 00:46:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/#comment-815</guid>
		<description>Very nice book but unfortunately this book is not for beginners so if you&#039;re new in databases try to read some tutorials or books for beginners and then come back for this book. 
&lt;br /&gt;
&lt;br /&gt;
</description>
		<content:encoded><![CDATA[<p>Very nice book but unfortunately this book is not for beginners so if you&#8217;re new in databases try to read some tutorials or books for beginners and then come back for this book. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: William B. Harding</title>
		<link>http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/#comment-814</link>
		<dc:creator>William B. Harding</dc:creator>
		<pubDate>Sun, 07 Feb 2010 23:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/#comment-814</guid>
		<description>I bought this book hoping to get a detailed understanding of how to best create and use indexes for my high traffic web site.  While the book does a great job of covering the pros and cons of standard indexes, it devotes only a single page to the utility of index_merge (introduced in Mysql 5.0).  Combined with a general dearth of information about index_merge on the web, this was a really disappointment, since index_merge seems to afford the possibility of using multiple, smaller indexes, rather than smaller number of bulky indexes (as this book recommends).  
&lt;br /&gt;
&lt;br /&gt;In my eyes, a thorough analysis of indexing techniques in Mysql 5+ must discuss the strategic opportunities afforded by index_merge.  It would seem to me that this gives the developer the ability to simply index the fields they want indexed, without having to sweat left-precedence of combined indexes or trying to make long indexes that include all of the possibly needed indexes in an order that will satisfy all possible query combinations.
&lt;br /&gt;
&lt;br /&gt;If limitations to the utility of index_merge make some of these possibilities not feasible, the book ought to at least give a rundown of the pros and cons of index_merge vs. compound indexes.  
&lt;br /&gt;
&lt;br /&gt;The near-total omission of a new feature that could have profound implications upon the most optimal way to query &amp; index makes me recommend this book with a tablespoon of salt.
</description>
		<content:encoded><![CDATA[<p>I bought this book hoping to get a detailed understanding of how to best create and use indexes for my high traffic web site.  While the book does a great job of covering the pros and cons of standard indexes, it devotes only a single page to the utility of index_merge (introduced in Mysql 5.0).  Combined with a general dearth of information about index_merge on the web, this was a really disappointment, since index_merge seems to afford the possibility of using multiple, smaller indexes, rather than smaller number of bulky indexes (as this book recommends).  </p>
<p>In my eyes, a thorough analysis of indexing techniques in Mysql 5+ must discuss the strategic opportunities afforded by index_merge.  It would seem to me that this gives the developer the ability to simply index the fields they want indexed, without having to sweat left-precedence of combined indexes or trying to make long indexes that include all of the possibly needed indexes in an order that will satisfy all possible query combinations.</p>
<p>If limitations to the utility of index_merge make some of these possibilities not feasible, the book ought to at least give a rundown of the pros and cons of index_merge vs. compound indexes.  </p>
<p>The near-total omission of a new feature that could have profound implications upon the most optimal way to query &#038; index makes me recommend this book with a tablespoon of salt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul Jaiswal</title>
		<link>http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/#comment-813</link>
		<dc:creator>Rahul Jaiswal</dc:creator>
		<pubDate>Sun, 07 Feb 2010 23:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.application-install-guide.com/high-performance-mysql-optimization-backups-replication-and-more/#comment-813</guid>
		<description>     The book is good. lots of new information as compared to the previous edition.
&lt;br /&gt;     the book arrived in time.
</description>
		<content:encoded><![CDATA[<p>The book is good. lots of new information as compared to the previous edition.<br />
<br />     the book arrived in time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

