<?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: implicit getters and setters using CF</title>
	<atom:link href="http://www.technoclasm.com/2009/12/implicit-getters-and-setters-using-cf/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.technoclasm.com/2009/12/implicit-getters-and-setters-using-cf/</link>
	<description>A few thoughts about Coldfusion, Development and Life</description>
	<lastBuildDate>Wed, 19 May 2010 16:48:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Henry Ho</title>
		<link>http://www.technoclasm.com/2009/12/implicit-getters-and-setters-using-cf/comment-page-1/#comment-22</link>
		<dc:creator>Henry Ho</dc:creator>
		<pubDate>Mon, 14 Dec 2009 20:21:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.technoclasm.com/?p=105#comment-22</guid>
		<description>If performance is important to you, I&#039;d suggest you to generate your getters and setters, or simply use Snippet in CFEclipse or CF Builder.

In the order of most efficient to least efficient:
CF9 implicit getter/setter &gt; getter/setter function &gt; CF8 onMissingMethod()

I usually use cfscript for getting and setters, then if I happen to upgrade to CF9, i just set accessors=true and delete the getter/setter cfscript block.  Just have to make sure you use variables scope instead of variables.instance.</description>
		<content:encoded><![CDATA[<p>If performance is important to you, I&#8217;d suggest you to generate your getters and setters, or simply use Snippet in CFEclipse or CF Builder.</p>
<p>In the order of most efficient to least efficient:<br />
CF9 implicit getter/setter &gt; getter/setter function &gt; CF8 onMissingMethod()</p>
<p>I usually use cfscript for getting and setters, then if I happen to upgrade to CF9, i just set accessors=true and delete the getter/setter cfscript block.  Just have to make sure you use variables scope instead of variables.instance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: <img src='http://www.technoclasm.com/wp-content/plugins/rpx/images/google.png'/> Joel</title>
		<link>http://www.technoclasm.com/2009/12/implicit-getters-and-setters-using-cf/comment-page-1/#comment-21</link>
		<dc:creator><img src='http://www.technoclasm.com/wp-content/plugins/rpx/images/google.png'/> Joel</dc:creator>
		<pubDate>Mon, 14 Dec 2009 20:12:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.technoclasm.com/?p=105#comment-21</guid>
		<description>Henry,

Interesting - but as coldfusion8 took 2 years to arrive here. We can&#039;t really wait that long. :-).

Joel</description>
		<content:encoded><![CDATA[<p>Henry,</p>
<p>Interesting &#8211; but as coldfusion8 took 2 years to arrive here. We can&#8217;t really wait that long. <img src='http://www.technoclasm.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>Joel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henry Ho</title>
		<link>http://www.technoclasm.com/2009/12/implicit-getters-and-setters-using-cf/comment-page-1/#comment-20</link>
		<dc:creator>Henry Ho</dc:creator>
		<pubDate>Mon, 14 Dec 2009 20:09:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.technoclasm.com/?p=105#comment-20</guid>
		<description>Tests have shown that the implicit getter/setter (intro. in CF9) are much much more efficient than onMissingMethod() (intro. in CF8).</description>
		<content:encoded><![CDATA[<p>Tests have shown that the implicit getter/setter (intro. in CF9) are much much more efficient than onMissingMethod() (intro. in CF8).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: <img src='http://www.technoclasm.com/wp-content/plugins/rpx/images/google.png'/> Joel</title>
		<link>http://www.technoclasm.com/2009/12/implicit-getters-and-setters-using-cf/comment-page-1/#comment-19</link>
		<dc:creator><img src='http://www.technoclasm.com/wp-content/plugins/rpx/images/google.png'/> Joel</dc:creator>
		<pubDate>Mon, 14 Dec 2009 19:43:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.technoclasm.com/?p=105#comment-19</guid>
		<description>I thought you would, I was trying to convince a few people at work that a couple of implicit getters and setters would help us. They were unconvinced, so I found a few backup sources. I think its a great feature :-)</description>
		<content:encoded><![CDATA[<p>I thought you would, I was trying to convince a few people at work that a couple of implicit getters and setters would help us. They were unconvinced, so I found a few backup sources. I think its a great feature <img src='http://www.technoclasm.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Nadel</title>
		<link>http://www.technoclasm.com/2009/12/implicit-getters-and-setters-using-cf/comment-page-1/#comment-18</link>
		<dc:creator>Ben Nadel</dc:creator>
		<pubDate>Mon, 14 Dec 2009 14:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.technoclasm.com/?p=105#comment-18</guid>
		<description>ColdFusion was the first time I had ever heard of handling methods that were not defined in objects. As such, I completely misunderstood what they were for (and was a bit misinformed as well). 

Since that post, I have come to rather like onMissingMethod() and use it for fun and profit (as Dan Wilson would say).</description>
		<content:encoded><![CDATA[<p>ColdFusion was the first time I had ever heard of handling methods that were not defined in objects. As such, I completely misunderstood what they were for (and was a bit misinformed as well). </p>
<p>Since that post, I have come to rather like onMissingMethod() and use it for fun and profit (as Dan Wilson would say).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
