<?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: Indexes in MySQL</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/</link>
	<description>Percona&#039;s MySQL &#38; InnoDB performance and scalability blog</description>
	<lastBuildDate>Sat, 11 Feb 2012 16:45:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: pradeep jangid</title>
		<link>http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/comment-page-1/#comment-801722</link>
		<dc:creator>pradeep jangid</dc:creator>
		<pubDate>Tue, 15 Mar 2011 08:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/#comment-801722</guid>
		<description>hi all,

i select data from table and show on one page but page load take more time  bcz table have 4 lac records

so i what do for quickly fetch data from table plz tell me any solution for it immediately any one

regards,

pradeep kumar jangir</description>
		<content:encoded><![CDATA[<p>hi all,</p>
<p>i select data from table and show on one page but page load take more time  bcz table have 4 lac records</p>
<p>so i what do for quickly fetch data from table plz tell me any solution for it immediately any one</p>
<p>regards,</p>
<p>pradeep kumar jangir</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vadim</title>
		<link>http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/comment-page-1/#comment-732358</link>
		<dc:creator>Vadim</dc:creator>
		<pubDate>Fri, 05 Mar 2010 15:33:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/#comment-732358</guid>
		<description>Santiago,

To decide about strategy - you just benchmark each if them and decide what work better for you.</description>
		<content:encoded><![CDATA[<p>Santiago,</p>
<p>To decide about strategy &#8211; you just benchmark each if them and decide what work better for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Santiago</title>
		<link>http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/comment-page-1/#comment-732354</link>
		<dc:creator>Santiago</dc:creator>
		<pubDate>Fri, 05 Mar 2010 15:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/#comment-732354</guid>
		<description>Ok, thanks for your quick answer Vadim. I&#039;m taking a look at your book, it&#039;s seems awesome. I&#039;ll try to get it from Amazon, it&#039;s a little dificult because i&#039;m in Argentina, but i&#039;ll give my best.

So, do you think i could use one of the strategies i mentioned above?</description>
		<content:encoded><![CDATA[<p>Ok, thanks for your quick answer Vadim. I&#8217;m taking a look at your book, it&#8217;s seems awesome. I&#8217;ll try to get it from Amazon, it&#8217;s a little dificult because i&#8217;m in Argentina, but i&#8217;ll give my best.</p>
<p>So, do you think i could use one of the strategies i mentioned above?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vadim</title>
		<link>http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/comment-page-1/#comment-732352</link>
		<dc:creator>Vadim</dc:creator>
		<pubDate>Fri, 05 Mar 2010 15:25:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/#comment-732352</guid>
		<description>Santiago,

In simple answer - no, MySQL does not have bitmap indexes.</description>
		<content:encoded><![CDATA[<p>Santiago,</p>
<p>In simple answer &#8211; no, MySQL does not have bitmap indexes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Santiago</title>
		<link>http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/comment-page-1/#comment-732351</link>
		<dc:creator>Santiago</dc:creator>
		<pubDate>Fri, 05 Mar 2010 15:20:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/#comment-732351</guid>
		<description>First, i&#039;ve to say Great Post!

I&#039;ve a Real Estate web app, where some houses can be marked as &quot;Distinguished&quot;, something like &quot;Featured&quot;. So those property is shown in a special way.

I&#039;d like to look up in the database for all the properties with a given Feature. Supose there&#039;s 3 kinds of feature (eg. Special, Great, Good), and every property has its own. If i&#039;ve 500 properties, my selectivity is about 0,006, then a index wouldn&#039;t be a good choice. But i still want to speed up my search, what can i do? I&#039;ve been thinking to have 3 in-memory arrays containing the ids of the properties. One array for each feature. So, for example, i&#039;d have the array of Special props, and would be like this:
SpecialsProps = [1,15,52,355,61,123,561].

Then if i need to search for all the special props, i would perform a &quot;SELECT ... WHERE id IN SpecialProps&quot;, and then, the ID Primary Key, Unique Index would be use. But, in this case, doing so, i&#039;d force to look several times for the index and the ids, and wouldn&#039;t be faster than making a full scan (at least, that&#039;s what i think). Another good strategy is, having all the properties cached, i could reference them directly.

So, to finalize this comment, a simple question. Does MySQL have any index like the BitMap from Oracle?

Thank you very much!</description>
		<content:encoded><![CDATA[<p>First, i&#8217;ve to say Great Post!</p>
<p>I&#8217;ve a Real Estate web app, where some houses can be marked as &#8220;Distinguished&#8221;, something like &#8220;Featured&#8221;. So those property is shown in a special way.</p>
<p>I&#8217;d like to look up in the database for all the properties with a given Feature. Supose there&#8217;s 3 kinds of feature (eg. Special, Great, Good), and every property has its own. If i&#8217;ve 500 properties, my selectivity is about 0,006, then a index wouldn&#8217;t be a good choice. But i still want to speed up my search, what can i do? I&#8217;ve been thinking to have 3 in-memory arrays containing the ids of the properties. One array for each feature. So, for example, i&#8217;d have the array of Special props, and would be like this:<br />
SpecialsProps = [1,15,52,355,61,123,561].</p>
<p>Then if i need to search for all the special props, i would perform a &#8220;SELECT &#8230; WHERE id IN SpecialProps&#8221;, and then, the ID Primary Key, Unique Index would be use. But, in this case, doing so, i&#8217;d force to look several times for the index and the ids, and wouldn&#8217;t be faster than making a full scan (at least, that&#8217;s what i think). Another good strategy is, having all the properties cached, i could reference them directly.</p>
<p>So, to finalize this comment, a simple question. Does MySQL have any index like the BitMap from Oracle?</p>
<p>Thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dbnewz &#187; Blog Archive &#187; CardinalitÃ©, sÃ©lectivitÃ© et distributivitÃ© d&#8217;un index MySQL : quel impact sur le plan d&#8217;exÃ©cution ?</title>
		<link>http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/comment-page-1/#comment-351926</link>
		<dc:creator>dbnewz &#187; Blog Archive &#187; CardinalitÃ©, sÃ©lectivitÃ© et distributivitÃ© d&#8217;un index MySQL : quel impact sur le plan d&#8217;exÃ©cution ?</dc:creator>
		<pubDate>Thu, 04 Sep 2008 22:37:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/#comment-351926</guid>
		<description>[...] L&#8217;article qui m&#8217;a incitÃ© Ã  effectuer mes propres tests. [...]</description>
		<content:encoded><![CDATA[<p>[...] L&#8217;article qui m&#8217;a incitÃ© Ã  effectuer mes propres tests. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vijay</title>
		<link>http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/comment-page-1/#comment-344915</link>
		<dc:creator>Vijay</dc:creator>
		<pubDate>Fri, 15 Aug 2008 10:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/#comment-344915</guid>
		<description>Hello,
 Can you please help me to improve the MYSql Query Performance. Actually we have the data which is using near about 2,00,000 data . so please give me tips to improve this sql performance.

Thanks in Advance
Vijay</description>
		<content:encoded><![CDATA[<p>Hello,<br />
 Can you please help me to improve the MYSql Query Performance. Actually we have the data which is using near about 2,00,000 data . so please give me tips to improve this sql performance.</p>
<p>Thanks in Advance<br />
Vijay</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent</title>
		<link>http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/comment-page-1/#comment-322498</link>
		<dc:creator>Vincent</dc:creator>
		<pubDate>Fri, 04 Jul 2008 07:54:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/#comment-322498</guid>
		<description>You know ! the finger just before the middle one...</description>
		<content:encoded><![CDATA[<p>You know ! the finger just before the middle one&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kishore</title>
		<link>http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/comment-page-1/#comment-318262</link>
		<dc:creator>Kishore</dc:creator>
		<pubDate>Thu, 26 Jun 2008 09:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/#comment-318262</guid>
		<description>What Is Index ?</description>
		<content:encoded><![CDATA[<p>What Is Index ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Computer Cases High Performance Computer</title>
		<link>http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/comment-page-1/#comment-244603</link>
		<dc:creator>Computer Cases High Performance Computer</dc:creator>
		<pubDate>Tue, 19 Feb 2008 05:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/06/02/indexes-in-mysql/#comment-244603</guid>
		<description>&lt;strong&gt;The Need for Rackmount Computer Cases&lt;/strong&gt;

When businesses need to group one type of server in with similar kinds, rack mount computer cases are brought in. Holding as many as 40 single servers, they feature common temperature-monitoring systems, linked drive bays and up to a maximum of 10 air-...</description>
		<content:encoded><![CDATA[<p><strong>The Need for Rackmount Computer Cases</strong></p>
<p>When businesses need to group one type of server in with similar kinds, rack mount computer cases are brought in. Holding as many as 40 single servers, they feature common temperature-monitoring systems, linked drive bays and up to a maximum of 10 air-&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

