<?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"
	>
<channel>
	<title>Comments on: Getting real life query speeds with MySQL</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/</link>
	<description>Everything about MySQL Performance</description>
	<pubDate>Tue, 02 Dec 2008 12:08:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: peter</title>
		<link>http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-169584</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Tue, 18 Sep 2007 20:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-169584</guid>
		<description>If you do not want to restart MySQL you can set key_buffer_size to 0 and when back  and do significant amount of full table scans to wipe of Innodb cache.  

It is less reliable anyway.</description>
		<content:encoded><![CDATA[<p>If you do not want to restart MySQL you can set key_buffer_size to 0 and when back  and do significant amount of full table scans to wipe of Innodb cache.  </p>
<p>It is less reliable anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-169084</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Mon, 17 Sep 2007 16:05:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-169084</guid>
		<description>Could you expand on the less intrusive ways for clearing the OS and MySQL caches? I would like to avoid restarting MySQL if possible.

Thanks</description>
		<content:encoded><![CDATA[<p>Could you expand on the less intrusive ways for clearing the OS and MySQL caches? I would like to avoid restarting MySQL if possible.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: All in a days work&#8230;</title>
		<link>http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-146488</link>
		<dc:creator>All in a days work&#8230;</dc:creator>
		<pubDate>Wed, 18 Jul 2007 02:29:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-146488</guid>
		<description>[...] Getting real life query speeds with MySQL &#8220;need production load to warm it up or test warmup load&#8221;, well yea, but what&#8217;s the process? [...]</description>
		<content:encoded><![CDATA[<p>[...] Getting real life query speeds with MySQL &#8220;need production load to warm it up or test warmup load&#8221;, well yea, but what&#8217;s the process? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-28901</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Sun, 14 Jan 2007 00:36:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-28901</guid>
		<description>Alexey, 

This assumes you do not have RAID, which has its own cache etc.   But yes generally it is possible, but I do not think it is really worth to do it such way.</description>
		<content:encoded><![CDATA[<p>Alexey, </p>
<p>This assumes you do not have RAID, which has its own cache etc.   But yes generally it is possible, but I do not think it is really worth to do it such way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexey</title>
		<link>http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-28887</link>
		<dc:creator>Alexey</dc:creator>
		<pubDate>Sun, 14 Jan 2007 00:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-28887</guid>
		<description>On recent linux kernels you can do:
echo "3" &#62; /proc/sys/vm/drop_caches
to clear OS cache. 
If you also restart MySQL, comparing even a single query performance may give meaningful results.</description>
		<content:encoded><![CDATA[<p>On recent linux kernels you can do:<br />
echo &#8220;3&#8243; &gt; /proc/sys/vm/drop_caches<br />
to clear OS cache.<br />
If you also restart MySQL, comparing even a single query performance may give meaningful results.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-27241</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Thu, 11 Jan 2007 11:14:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-27241</guid>
		<description>I agree JMeter is great. 

JMeter however does "Full Stack" benchmark loading  HTTP Server, Application Server and then database server, this is of course required part of performance testing, but which adds complication if you're looking at particular queries and you want to check how their execution speed had changed.</description>
		<content:encoded><![CDATA[<p>I agree JMeter is great. </p>
<p>JMeter however does &#8220;Full Stack&#8221; benchmark loading  HTTP Server, Application Server and then database server, this is of course required part of performance testing, but which adds complication if you&#8217;re looking at particular queries and you want to check how their execution speed had changed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-27207</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 11 Jan 2007 10:47:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/01/10/getting-real-life-query-speeds-with-mysql/#comment-27207</guid>
		<description>Interesting article as always :)

Apache JMeter is an excellent tool for load testing a MySQL database. I tend to use it via HTTP requests to the website, which in turn will load up the MySQL database.

http://jakarta.apache.org/jmeter/index.html 

This makes testing 'real world' conditions incredibly easy, and fairly accurate.</description>
		<content:encoded><![CDATA[<p>Interesting article as always <img src='http://www.mysqlperformanceblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Apache JMeter is an excellent tool for load testing a MySQL database. I tend to use it via HTTP requests to the website, which in turn will load up the MySQL database.</p>
<p><a href="http://jakarta.apache.org/jmeter/index.html" rel="nofollow">http://jakarta.apache.org/jmeter/index.html</a> </p>
<p>This makes testing &#8216;real world&#8217; conditions incredibly easy, and fairly accurate.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
