<?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: To SQL_CALC_FOUND_ROWS or not to SQL_CALC_FOUND_ROWS?</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/</link>
	<description>Everything about MySQL Performance</description>
	<pubDate>Thu, 28 Aug 2008 00:23:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: vlado107</title>
		<link>http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-349365</link>
		<dc:creator>vlado107</dc:creator>
		<pubDate>Tue, 26 Aug 2008 21:05:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-349365</guid>
		<description>In first sql you are using "ORDER BY c", this column is not indexed and mysql must pass all rows to order result</description>
		<content:encoded><![CDATA[<p>In first sql you are using &#8220;ORDER BY c&#8221;, this column is not indexed and mysql must pass all rows to order result</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sunfox</title>
		<link>http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-347887</link>
		<dc:creator>Sunfox</dc:creator>
		<pubDate>Sat, 23 Aug 2008 07:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-347887</guid>
		<description>I have to say that COUNT(*) is faster so far.

Query with LIMIT and SQL_CALC_FOUND_ROWS: 0.80 - 1.00 seconds
Query without SQL_CALC_FOUND_ROWS: 0.06 seconds
Added COUNT(*) query: 0.09-0.12 seconds</description>
		<content:encoded><![CDATA[<p>I have to say that COUNT(*) is faster so far.</p>
<p>Query with LIMIT and SQL_CALC_FOUND_ROWS: 0.80 - 1.00 seconds<br />
Query without SQL_CALC_FOUND_ROWS: 0.06 seconds<br />
Added COUNT(*) query: 0.09-0.12 seconds</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergio</title>
		<link>http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-333025</link>
		<dc:creator>Sergio</dc:creator>
		<pubDate>Tue, 22 Jul 2008 23:40:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-333025</guid>
		<description>Yeap, I've tested and found that "2 query mode" (0,015 sec*) are about 10x times faster than "one with SQL_CALC_FOUND_ROWS" (0,153 sec*).

The application that I've tested has 164.520 rows (42MB table).

* generation time of the page where the queries were executed. That time is the minimal value which was gained after some page refreshes.</description>
		<content:encoded><![CDATA[<p>Yeap, I&#8217;ve tested and found that &#8220;2 query mode&#8221; (0,015 sec*) are about 10x times faster than &#8220;one with SQL_CALC_FOUND_ROWS&#8221; (0,153 sec*).</p>
<p>The application that I&#8217;ve tested has 164.520 rows (42MB table).</p>
<p>* generation time of the page where the queries were executed. That time is the minimal value which was gained after some page refreshes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL_CALC_FOUND_ROWS - Is it faster? &#187; Forums, Blogs, Wikis</title>
		<link>http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-312638</link>
		<dc:creator>SQL_CALC_FOUND_ROWS - Is it faster? &#187; Forums, Blogs, Wikis</dc:creator>
		<pubDate>Thu, 12 Jun 2008 14:42:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-312638</guid>
		<description>[...] through a post on SQL_CALC_FOUND_ROWS actually being slower that running one query followed by a count query I decided I needed to do a little benchmarking on [...]</description>
		<content:encoded><![CDATA[<p>[...] through a post on SQL_CALC_FOUND_ROWS actually being slower that running one query followed by a count query I decided I needed to do a little benchmarking on [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: techfounder &#187; Pagination with Zend_Db_Select</title>
		<link>http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-312243</link>
		<dc:creator>techfounder &#187; Pagination with Zend_Db_Select</dc:creator>
		<pubDate>Wed, 11 Jun 2008 01:02:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-312243</guid>
		<description>[...] in two seperate queries while the second is just one query, however it is not that obvious which one is better for performance. For our case we&#8217;ll use the first method, duplicating the original query while stripping out [...]</description>
		<content:encoded><![CDATA[<p>[...] in two seperate queries while the second is just one query, however it is not that obvious which one is better for performance. For our case we&#8217;ll use the first method, duplicating the original query while stripping out [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ligio Blog &#187; Num Rows nelle query con LIMIT</title>
		<link>http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-278873</link>
		<dc:creator>Ligio Blog &#187; Num Rows nelle query con LIMIT</dc:creator>
		<pubDate>Wed, 16 Apr 2008 01:56:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-278873</guid>
		<description>[...] Un test dettagliato è visionabile a questo indirizzo su mysqlperformanceblog [...]</description>
		<content:encoded><![CDATA[<p>[...] Un test dettagliato è visionabile a questo indirizzo su mysqlperformanceblog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SpawN &#187; Blog Archive &#187; MYSQL查询问题</title>
		<link>http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-259012</link>
		<dc:creator>SpawN &#187; Blog Archive &#187; MYSQL查询问题</dc:creator>
		<pubDate>Fri, 28 Mar 2008 17:40:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-259012</guid>
		<description>[...] 另外从此贴中也可以分析得到，存在适当的索引在查询条件语句中，使用2个单独的查询语句要比单独使用SQL_CALC_FOUND_ROWS快的多 [...]</description>
		<content:encoded><![CDATA[<p>[...] 另外从此贴中也可以分析得到，存在适当的索引在查询条件语句中，使用2个单独的查询语句要比单独使用SQL_CALC_FOUND_ROWS快的多 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jobs Job Search Engine</title>
		<link>http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-242851</link>
		<dc:creator>Jobs Job Search Engine</dc:creator>
		<pubDate>Fri, 15 Feb 2008 11:44:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-242851</guid>
		<description>&lt;strong&gt;The significance of attentive job search in the human resources market.&lt;/strong&gt;

Nowadays this problem is very widespread. The agreement at present can be oral or written, and the most important conditions in them can be marked in an oral, written or mixed form.</description>
		<content:encoded><![CDATA[<p><strong>The significance of attentive job search in the human resources market.</strong></p>
<p>Nowadays this problem is very widespread. The agreement at present can be oral or written, and the most important conditions in them can be marked in an oral, written or mixed form.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: techblog.tilllate.com &#187; Comparing queries with mk-query-profiler and diff-</title>
		<link>http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-239331</link>
		<dc:creator>techblog.tilllate.com &#187; Comparing queries with mk-query-profiler and diff-</dc:creator>
		<pubDate>Tue, 05 Feb 2008 16:08:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-239331</guid>
		<description>[...] how you do it. As an example I take the queries from this mysql performance blog article article. Because I&#8217;d like to learn what excactly SQL_CALC_FOUND_ROWS [...]</description>
		<content:encoded><![CDATA[<p>[...] how you do it. As an example I take the queries from this mysql performance blog article article. Because I&#8217;d like to learn what excactly SQL_CALC_FOUND_ROWS [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Колядин Алексей (donflash) &#187; Blog Archive &#187; Постраничная навигация и проблемы, связан</title>
		<link>http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-236081</link>
		<dc:creator>Колядин Алексей (donflash) &#187; Blog Archive &#187; Постраничная навигация и проблемы, связан</dc:creator>
		<pubDate>Wed, 30 Jan 2008 14:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/08/28/to-sql_calc_found_rows-or-not-to-sql_calc_found_rows/#comment-236081</guid>
		<description>[...] чтобы понять в чём причина, пока не наткнулся на эту статью. Пересказывать её не буду, сами прочитаете, но мораль [...]</description>
		<content:encoded><![CDATA[<p>[...] чтобы понять в чём причина, пока не наткнулся на эту статью. Пересказывать её не буду, сами прочитаете, но мораль [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
