<?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: How To Efficiently Search A JSON Array</title>
	<atom:link href="http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/</link>
	<description>Understanding JavaScript and Frameworks</description>
	<pubDate>Tue, 06 Jan 2009 10:26:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Matt Snider</title>
		<link>http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/comment-page-1/#comment-22120</link>
		<dc:creator>Matt Snider</dc:creator>
		<pubDate>Tue, 26 Aug 2008 04:06:56 +0000</pubDate>
		<guid isPermaLink="false">http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/#comment-22120</guid>
		<description>Vish,

You are correct, this technique will only work if your data set contains unique values. With the tags example, you wouldn't have 2 versions of the same tagName, so technique will work.</description>
		<content:encoded><![CDATA[<p>Vish,</p>
<p>You are correct, this technique will only work if your data set contains unique values. With the tags example, you wouldn&#8217;t have 2 versions of the same tagName, so technique will work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vish</title>
		<link>http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/comment-page-1/#comment-22112</link>
		<dc:creator>vish</dc:creator>
		<pubDate>Tue, 26 Aug 2008 01:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/#comment-22112</guid>
		<description>Hi Matt,

Aren't you assuming in the above case that the tagName is unique??? Do you suggest a better way to find all tagNames that match a value?

Vish</description>
		<content:encoded><![CDATA[<p>Hi Matt,</p>
<p>Aren&#8217;t you assuming in the above case that the tagName is unique??? Do you suggest a better way to find all tagNames that match a value?</p>
<p>Vish</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K. Adam Christensen</title>
		<link>http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/comment-page-1/#comment-22046</link>
		<dc:creator>K. Adam Christensen</dc:creator>
		<pubDate>Mon, 25 Aug 2008 10:33:48 +0000</pubDate>
		<guid isPermaLink="false">http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/#comment-22046</guid>
		<description>Well...if you want to get down to the nitty gritty, call it an object :)

Nice read.</description>
		<content:encoded><![CDATA[<p>Well&#8230;if you want to get down to the nitty gritty, call it an object <img src='http://mattsnider.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Nice read.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/comment-page-1/#comment-21986</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sun, 24 Aug 2008 19:57:45 +0000</pubDate>
		<guid isPermaLink="false">http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/#comment-21986</guid>
		<description>Yeah. I figured you named it that due to the naming conventions that you use in your primary language.

Thanks for the link to wikipedia.</description>
		<content:encoded><![CDATA[<p>Yeah. I figured you named it that due to the naming conventions that you use in your primary language.</p>
<p>Thanks for the link to wikipedia.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Snider</title>
		<link>http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/comment-page-1/#comment-21979</link>
		<dc:creator>Matt Snider</dc:creator>
		<pubDate>Sun, 24 Aug 2008 17:48:17 +0000</pubDate>
		<guid isPermaLink="false">http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/#comment-21979</guid>
		<description>Mike,

That is probably true. I do not know what algorithm JavaScript uses to store and retrieve Object keys. (If anyone knows it, please post a link). However, JavaScript Objects can be used to behave very much like a Hash Table (I called it a Hash Map, because I am used to the JAVA Object). For now I've changed the terminology in this article to "Map of Keys".

If anyone is interested in more information about Hash Tables:

http://en.wikipedia.org/wiki/Hash_table</description>
		<content:encoded><![CDATA[<p>Mike,</p>
<p>That is probably true. I do not know what algorithm JavaScript uses to store and retrieve Object keys. (If anyone knows it, please post a link). However, JavaScript Objects can be used to behave very much like a Hash Table (I called it a Hash Map, because I am used to the JAVA Object). For now I&#8217;ve changed the terminology in this article to &#8220;Map of Keys&#8221;.</p>
<p>If anyone is interested in more information about Hash Tables:</p>
<p><a href="http://en.wikipedia.org/wiki/Hash_table" rel="nofollow">http://en.wikipedia.org/wiki/Hash_table</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/comment-page-1/#comment-21977</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sun, 24 Aug 2008 17:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://mattsnider.com/languages/javascript/how-to-efficiently-search-a-json-array/#comment-21977</guid>
		<description>I don't think that's hash map. I don't think its a hash map because I believe it missing the hashing part of the map. I suppose you could call it a map, but not a hashmap.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think that&#8217;s hash map. I don&#8217;t think its a hash map because I believe it missing the hashing part of the map. I suppose you could call it a map, but not a hashmap.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
