<?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 for Elliott&#039;s Development Blog</title>
	<atom:link href="http://www.elliottsprehn.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.elliottsprehn.com/blog</link>
	<description>Exploring Life Through Math, Algorithms and Code</description>
	<lastBuildDate>Mon, 30 Aug 2010 20:08:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Trust Your API (Railo Caching Silliness) by Elliott</title>
		<link>http://www.elliottsprehn.com/blog/2010/08/30/trust-your-api-railo-caching-silliness/comment-page-1/#comment-16471</link>
		<dc:creator>Elliott</dc:creator>
		<pubDate>Mon, 30 Aug 2010 20:08:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.elliottsprehn.com/blog/?p=139#comment-16471</guid>
		<description>@Sean

I have added a comment that there&#039;s a fix in your bleeding edge code.</description>
		<content:encoded><![CDATA[<p>@Sean</p>
<p>I have added a comment that there&#8217;s a fix in your bleeding edge code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Trust Your API (Railo Caching Silliness) by Offner Michael (CTO Railo Technologies)</title>
		<link>http://www.elliottsprehn.com/blog/2010/08/30/trust-your-api-railo-caching-silliness/comment-page-1/#comment-16470</link>
		<dc:creator>Offner Michael (CTO Railo Technologies)</dc:creator>
		<pubDate>Mon, 30 Aug 2010 16:05:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.elliottsprehn.com/blog/?p=139#comment-16470</guid>
		<description>First of all your right in this case and because that we have already changed this in our code.

This class was written when we still have supported java 1.4 and because java 1.4 has not supported this feature (java.lang.Integer.valueOf(int):Integer) we had to do on our own, we have selected the range from 0 to 100, because most number used inside the most popular application are in this range, before we have selected this range we have add a logger to the method Constants.Integer and then we have logged the numbers used while running different apps. in theory the jre implementation is better but in the real world it makes no difference and the railo impl use less memory.

the usage of objects from type Integer is very rare in Railo, because all numbers defined in the cfml code are handled as Double Object, Integer are mostly used for invoking for 3party libs.

&quot;Moreover since the method is part of the API it’ll likely get compiled to native code much faster.&quot;
classes like java.lang.Integer are in a regular jar archive, there is no difference between them and classes written by me or you, they are not faster, they work exact the same way. most (or even all today) JRE have a runtime compiler that translate the os indepedned bytecode to machine code at runtime.

&quot;Trust the API: It is Faster!&quot;
Newer trust a api that you not have written by yourself ;-)
the JRE library is very good but also the people at Sun are not perfect, new ideas only come in the field when there is a need for, not in the labs.

for example railo has it&#039;s own floating number parser, simply because it is faster than the jre parser in 99% (or more) of all the cases used in railo. railo has it&#039;s own color definition parser, simply because it is more flexible than the jre color parser. we are on the way from switiching  from JRE Date Handling to Joda (see classes railo.commons.date.JREDateTimeUtil, railo.commons.date.JodaDateTimeUtil) simply because joda is faster/better.
and all this are only things i have in mind at the moment.

but like sun we are more than open for suggestions to improve our current code base, but defintily no api or app is perfect and need no improvement.

/micha

p.s. sorry my bad english need improvment as well ;-)</description>
		<content:encoded><![CDATA[<p>First of all your right in this case and because that we have already changed this in our code.</p>
<p>This class was written when we still have supported java 1.4 and because java 1.4 has not supported this feature (java.lang.Integer.valueOf(int):Integer) we had to do on our own, we have selected the range from 0 to 100, because most number used inside the most popular application are in this range, before we have selected this range we have add a logger to the method Constants.Integer and then we have logged the numbers used while running different apps. in theory the jre implementation is better but in the real world it makes no difference and the railo impl use less memory.</p>
<p>the usage of objects from type Integer is very rare in Railo, because all numbers defined in the cfml code are handled as Double Object, Integer are mostly used for invoking for 3party libs.</p>
<p>&#8220;Moreover since the method is part of the API it’ll likely get compiled to native code much faster.&#8221;<br />
classes like java.lang.Integer are in a regular jar archive, there is no difference between them and classes written by me or you, they are not faster, they work exact the same way. most (or even all today) JRE have a runtime compiler that translate the os indepedned bytecode to machine code at runtime.</p>
<p>&#8220;Trust the API: It is Faster!&#8221;<br />
Newer trust a api that you not have written by yourself ;-)<br />
the JRE library is very good but also the people at Sun are not perfect, new ideas only come in the field when there is a need for, not in the labs.</p>
<p>for example railo has it&#8217;s own floating number parser, simply because it is faster than the jre parser in 99% (or more) of all the cases used in railo. railo has it&#8217;s own color definition parser, simply because it is more flexible than the jre color parser. we are on the way from switiching  from JRE Date Handling to Joda (see classes railo.commons.date.JREDateTimeUtil, railo.commons.date.JodaDateTimeUtil) simply because joda is faster/better.<br />
and all this are only things i have in mind at the moment.</p>
<p>but like sun we are more than open for suggestions to improve our current code base, but defintily no api or app is perfect and need no improvement.</p>
<p>/micha</p>
<p>p.s. sorry my bad english need improvment as well ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Trust Your API (Railo Caching Silliness) by Sean Corfield</title>
		<link>http://www.elliottsprehn.com/blog/2010/08/30/trust-your-api-railo-caching-silliness/comment-page-1/#comment-16469</link>
		<dc:creator>Sean Corfield</dc:creator>
		<pubDate>Mon, 30 Aug 2010 15:49:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.elliottsprehn.com/blog/?p=139#comment-16469</guid>
		<description>I just looked at the comment exchange on that ticket - are you going to update this blog post to reflect that?</description>
		<content:encoded><![CDATA[<p>I just looked at the comment exchange on that ticket &#8211; are you going to update this blog post to reflect that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CF9 import EXTREMELY SLOW without Component Cache by Tweets that mention CF9 import EXTREMELY SLOW without Component Cache - Elliott's Development Blog -- Topsy.com</title>
		<link>http://www.elliottsprehn.com/blog/2010/08/19/cf9-import-extremely-slow-without-component-cache/comment-page-1/#comment-16467</link>
		<dc:creator>Tweets that mention CF9 import EXTREMELY SLOW without Component Cache - Elliott's Development Blog -- Topsy.com</dc:creator>
		<pubDate>Sun, 22 Aug 2010 21:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.elliottsprehn.com/blog/?p=124#comment-16467</guid>
		<description>[...] This post was mentioned on Twitter by Dave Shuck, Aaron Longnion. Aaron Longnion said: RT @dshuck: interesting note on the performance hit of CF9&#039;s import when not using component cache. http://bit.ly/b8R86q #coldfusion [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Dave Shuck, Aaron Longnion. Aaron Longnion said: RT @dshuck: interesting note on the performance hit of CF9&#039;s import when not using component cache. <a href="http://bit.ly/b8R86q" rel="nofollow">http://bit.ly/b8R86q</a> #coldfusion [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Designing Scalable and Creative Algorithms by Tim Cunnigham</title>
		<link>http://www.elliottsprehn.com/blog/presentations/designing-scalable-and-creative-algorithms/comment-page-1/#comment-16465</link>
		<dc:creator>Tim Cunnigham</dc:creator>
		<pubDate>Sun, 22 Aug 2010 11:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.elliottsprehn.com/blog/#comment-16465</guid>
		<description>You can also watch a video of the whole presentation that I made on CFMumboJumbo.com Link: http://ow.ly/2sZP7</description>
		<content:encoded><![CDATA[<p>You can also watch a video of the whole presentation that I made on CFMumboJumbo.com Link: <a href="http://ow.ly/2sZP7" rel="nofollow">http://ow.ly/2sZP7</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe CFBuilder Bug Database Mirror by Tracy Logan</title>
		<link>http://www.elliottsprehn.com/blog/2010/08/21/adobe-cfbuilder-bug-database-mirror/comment-page-1/#comment-16464</link>
		<dc:creator>Tracy Logan</dc:creator>
		<pubDate>Sat, 21 Aug 2010 19:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.elliottsprehn.com/blog/?p=132#comment-16464</guid>
		<description>Hey, that&#039;s great news -- thanks tons for this second usability win!</description>
		<content:encoded><![CDATA[<p>Hey, that&#8217;s great news &#8212; thanks tons for this second usability win!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CFUnited 2010 Presentations by Elliott</title>
		<link>http://www.elliottsprehn.com/blog/2010/08/05/cfunited-2010-presentations/comment-page-1/#comment-16463</link>
		<dc:creator>Elliott</dc:creator>
		<pubDate>Thu, 19 Aug 2010 06:07:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.elliottsprehn.com/blog/?p=118#comment-16463</guid>
		<description>@Henry

The presentation slides and the code are already linked from the presentation pages. Perhaps you missed it? :)</description>
		<content:encoded><![CDATA[<p>@Henry</p>
<p>The presentation slides and the code are already linked from the presentation pages. Perhaps you missed it? :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CFUnited 2010 Presentations by Henry Ho</title>
		<link>http://www.elliottsprehn.com/blog/2010/08/05/cfunited-2010-presentations/comment-page-1/#comment-16462</link>
		<dc:creator>Henry Ho</dc:creator>
		<pubDate>Mon, 16 Aug 2010 06:46:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.elliottsprehn.com/blog/?p=118#comment-16462</guid>
		<description>Would you please consider posting the code and slides?

Thank you!</description>
		<content:encoded><![CDATA[<p>Would you please consider posting the code and slides?</p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe ColdFusion Bug Database Mirror by Elliott</title>
		<link>http://www.elliottsprehn.com/blog/2010/04/11/adobe-coldfusion-bug-database-mirror/comment-page-1/#comment-16461</link>
		<dc:creator>Elliott</dc:creator>
		<pubDate>Mon, 09 Aug 2010 20:06:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.elliottsprehn.com/blog/?p=103#comment-16461</guid>
		<description>@John

I asked the same question recently of someone at Adobe and they said that the tracker unfortunately hides bugs that are marked as &quot;targeted for a future release&quot;. I suppose this is to hide bugs about unreleased versions of CF (ex. CF10).

I think the bugs will reappear once the hot fix is released.</description>
		<content:encoded><![CDATA[<p>@John</p>
<p>I asked the same question recently of someone at Adobe and they said that the tracker unfortunately hides bugs that are marked as &#8220;targeted for a future release&#8221;. I suppose this is to hide bugs about unreleased versions of CF (ex. CF10).</p>
<p>I think the bugs will reappear once the hot fix is released.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I bet you didn&#8217;t know you could do that with ColdFusion by Tim Cunningham</title>
		<link>http://www.elliottsprehn.com/blog/presentations/i-bet-you-didnt-know-you-could-do-that-with-coldfusion/comment-page-1/#comment-16460</link>
		<dc:creator>Tim Cunningham</dc:creator>
		<pubDate>Mon, 09 Aug 2010 18:54:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.elliottsprehn.com/blog/presentations/i-bet-you-didnt-know-you-could-do-that-with-coldfusion/#comment-16460</guid>
		<description>This was an amazing talk!  I videoed the whole thing, you can view it here: http://ow.ly/2n7w4</description>
		<content:encoded><![CDATA[<p>This was an amazing talk!  I videoed the whole thing, you can view it here: <a href="http://ow.ly/2n7w4" rel="nofollow">http://ow.ly/2n7w4</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
