<?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: Speed up your JavaScript with memoization and queueing</title>
	<atom:link href="http://ajaxian.com/archives/speed-up-your-javascript-with-memoization/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/speed-up-your-javascript-with-memoization</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 17 May 2012 07:43:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: mjuhl</title>
		<link>http://ajaxian.com/archives/speed-up-your-javascript-with-memoization/comment-page-1#comment-270751</link>
		<dc:creator>mjuhl</dc:creator>
		<pubDate>Mon, 26 Jan 2009 18:26:10 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=5769#comment-270751</guid>
		<description>Wow, takes me right back to Intro to Programming...nice.</description>
		<content:encoded><![CDATA[<p>Wow, takes me right back to Intro to Programming&#8230;nice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nosredna</title>
		<link>http://ajaxian.com/archives/speed-up-your-javascript-with-memoization/comment-page-1#comment-270702</link>
		<dc:creator>Nosredna</dc:creator>
		<pubDate>Fri, 23 Jan 2009 16:48:09 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=5769#comment-270702</guid>
		<description>I like building the memoization right into the function, using the fact that a function is an object that can have properties.</description>
		<content:encoded><![CDATA[<p>I like building the memoization right into the function, using the fact that a function is an object that can have properties.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tavs</title>
		<link>http://ajaxian.com/archives/speed-up-your-javascript-with-memoization/comment-page-1#comment-270696</link>
		<dc:creator>Tavs</dc:creator>
		<pubDate>Fri, 23 Jan 2009 15:12:23 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=5769#comment-270696</guid>
		<description>@ doomedlung: I tried creating a method for that. It accepts any number of arguments as long as those arguments has a string representation. If you can imporve it please let me know.

You can find it at http://www.jslab.dk/library/Function.memoize</description>
		<content:encoded><![CDATA[<p>@ doomedlung: I tried creating a method for that. It accepts any number of arguments as long as those arguments has a string representation. If you can imporve it please let me know.</p>
<p>You can find it at <a href="http://www.jslab.dk/library/Function.memoize" rel="nofollow">http://www.jslab.dk/library/Function.memoize</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philogb</title>
		<link>http://ajaxian.com/archives/speed-up-your-javascript-with-memoization/comment-page-1#comment-270692</link>
		<dc:creator>philogb</dc:creator>
		<pubDate>Fri, 23 Jan 2009 12:50:48 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=5769#comment-270692</guid>
		<description>I did a &quot;more generic&quot; version of a memoization function not so long ago, if someone&#039;s interested.

http://blog.thejit.org/2008/09/05/memoization-in-javascript/</description>
		<content:encoded><![CDATA[<p>I did a &#8220;more generic&#8221; version of a memoization function not so long ago, if someone&#8217;s interested.</p>
<p><a href="http://blog.thejit.org/2008/09/05/memoization-in-javascript/" rel="nofollow">http://blog.thejit.org/2008/09/05/memoization-in-javascript/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doomedlung</title>
		<link>http://ajaxian.com/archives/speed-up-your-javascript-with-memoization/comment-page-1#comment-270691</link>
		<dc:creator>doomedlung</dc:creator>
		<pubDate>Fri, 23 Jan 2009 12:50:28 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=5769#comment-270691</guid>
		<description>Just out of interest, regarding the Zakas &quot;schedule&quot; example how would I pass parameters to each function.</description>
		<content:encoded><![CDATA[<p>Just out of interest, regarding the Zakas &#8220;schedule&#8221; example how would I pass parameters to each function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WebReflection</title>
		<link>http://ajaxian.com/archives/speed-up-your-javascript-with-memoization/comment-page-1#comment-270690</link>
		<dc:creator>WebReflection</dc:creator>
		<pubDate>Fri, 23 Jan 2009 11:28:27 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=5769#comment-270690</guid>
		<description>dejavu ... and in my &quot;Stressfull procedure? Distribute your task!&quot; entry I implemented the delay and the in-line or propagated scope.
The result with the queue callbacks stack is a slower application that is more responsive instead of a &quot;not that quick&quot; one that is stuck till the end of the loop. As summary, a slower execution for a faster, non modal, interaction, sounds weird, doesn&#039;t it? :D</description>
		<content:encoded><![CDATA[<p>dejavu &#8230; and in my &#8220;Stressfull procedure? Distribute your task!&#8221; entry I implemented the delay and the in-line or propagated scope.<br />
The result with the queue callbacks stack is a slower application that is more responsive instead of a &#8220;not that quick&#8221; one that is stuck till the end of the loop. As summary, a slower execution for a faster, non modal, interaction, sounds weird, doesn&#8217;t it? :D</p>
]]></content:encoded>
	</item>
</channel>
</rss>

