<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>Strikefish Blog - Adobe</title>
			<link>http://blog.strikefish.com/blog/index.cfm</link>
			<description></description>
			<language>en-us</language>
			<pubDate>Thu, 23 May 2013 23:42:25 -0400</pubDate>
			<lastBuildDate>Mon, 22 Mar 2010 08:20:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>jeffrey.bouley@strikefish.com</managingEditor>
			<webMaster>jeffrey.bouley@strikefish.com</webMaster>
			
			<item>
				<title>Flex 4 and FlashBuilder 4 Released</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2010/3/22/Flex-4-and-FlashBuilder-4-Released</link>
				<description>
				
				Start your engines...

You can get the scoop here:

http://blogs.adobe.com/flex/ 
				</description>
				
				<category>Adobe</category>				
				
				<category>Flash</category>				
				
				<category>ActionScript</category>				
				
				<category>Flex</category>				
				
				<category>IT in General</category>				
				
				<category>Universal Mind</category>				
				
				<pubDate>Mon, 22 Mar 2010 08:20:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2010/3/22/Flex-4-and-FlashBuilder-4-Released</guid>
				
			</item>
			
			<item>
				<title>Spring and BlazeDS Best Practices</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2009/11/17/Spring-and-BlazeDS-Best-Practices</link>
				<description>
				
				I recently wrote a white paper for a client to assist them in ramping up with Spring and BlazeDS Integration (SBI) best practices.  The link below will allow you to download the white paper.  

It contains many links to helpful downloads and assists in a &quot;painless&quot; install and configuration for this solution set.  There is also a java and flex example app to get you started.  Enjoy...

&lt;a href=&quot;http://www.strikefish.com/download/blazeds_best_practices.pdf&quot;&gt;BlazeDS Best Practices&lt;/a&gt; 
				</description>
				
				<category>Adobe</category>				
				
				<category>Flash</category>				
				
				<category>ActionScript</category>				
				
				<category>Flex</category>				
				
				<category>IT in General</category>				
				
				<category>Java</category>				
				
				<category>Universal Mind</category>				
				
				<category>BlazeDS</category>				
				
				<pubDate>Tue, 17 Nov 2009 21:37:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2009/11/17/Spring-and-BlazeDS-Best-Practices</guid>
				
			</item>
			
			<item>
				<title>Flash Camp Atlanta</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2009/8/12/Flash-Camp-Atlanta</link>
				<description>
				
				If you are looking for a great day of Flex and Adobe discussion/training sign up for Flash Camp Atlanta!  

It&apos;s on Aug. 28th and starts at 8 for the special introduction course with general sessions starting at 9.  You can&apos;t beat the training you will receive from these experts in Flash and RIA; plus it only costs 50 bucks!

I am planning to attend, hope to see you there; click on the image to register:

&lt;a href=&quot;http://www.flashcampatlanta.com/&quot; mce_href=&quot;http://www.flashcampatlanta.com/&quot; target=&quot;_blank&quot;&gt;
&lt;img src=&quot;http://s3.davidtucker.net/flash_camp_atlanta-200.png&quot; mce_src=&quot;http://s3.davidtucker.net/flash_camp_atlanta-200.png&quot; width=&quot;200&quot; border=&quot;0&quot; /&gt;
&lt;/a&gt; 
				</description>
				
				<category>Adobe</category>				
				
				<category>Flash</category>				
				
				<category>ActionScript</category>				
				
				<category>Flex</category>				
				
				<category>IT in General</category>				
				
				<category>Java</category>				
				
				<category>Universal Mind</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 12 Aug 2009 15:38:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2009/8/12/Flash-Camp-Atlanta</guid>
				
			</item>
			
			<item>
				<title>jvm.config Tuning Tip For All Server Side Java Solutions</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2009/7/15/jvmconfig-Tuning-Tip-For-All-Server-Side-Java-Solutions</link>
				<description>
				
				I have been wanting to blog about an experience I had not too long ago on a project where the jvm was consistently throwing OOM errors.  It had me banging my head against my desk for a few days attempting to trace where the culprit was.

Was it code related?... yes, was it bad code?... sort of, was it very very very intense code (looping over many sql calls and instantiating many objects)?... YES!  The challenge here was to apply a quick band aid rather than redesign this rules engine that had the characteristics listed due to time constraints.  It is important to note I was not responsible for the poorly written code 8-).  

I had to first identify if there were memory leaks due to this code.  To do this I utilized &lt;a href=&quot;http://http://www.yourkit.com/&quot;&gt;YourKit Java Profiler&lt;/a&gt;.  They have .NET and Java profilers that allow you to monitor their respective runtimes.  YourKit Profiler is very simple to configure within the jvm.config file (I&apos;m not going to get into that in this blog).  My point here is that I witnessed memory steadily climb and at times spike, but was only able to reclaim memory when executing a manual GC.  UGGG!!!  So, no memory leak, but the runtime was hanging on to what it had...  Why was the GC not reclaiming memory quickly on it&apos;s own?  I had all the BP jvm args of old, etc., etc. ParNewGC and RMI to no avail.

And to get back to the initial issue; the blasted OOM error.  I searched high and low and identified a thread on a Sun forum that there were issues with jre 1.5 that ultimately threw a OOM error if the runtime was unable to reclaim memory during a GC within a given time frame.  The workaround for this was to set a time constraint in the JVM (which didn&apos;t work) or install 1.6_10 or later.  This was my first step.  I installed this JRE version and pointed my jvm.config to it.  The application ran fine under this JRE except that I was still seeing the memory creep to the ceiling with no reclaim.  

I then read on one of Sun&apos;s GC tuning white papers the following paragraph:

The -XX:+AggressiveHeap option inspects the machine resources (size of memory and number of processors) and attempts to set various parameters to be optimal for long-running, memory allocation-intensive jobs. It was originally intended for machines with large amounts of memory and a large number of CPUs, but in the J2SE platform, version 1.4.1 and later it has shown itself to be useful even on four processor machines. With this option the throughput collector (-XX:+UseParallelGC) is used along with adaptive sizing (-XX:+UseAdaptiveSizePolicy). The physical memory on the machines must be at least 256MB before AggressiveHeap can be used. The size of the initial heap is calculated based on the size of the physical memory and attempts to make maximal use of the physical memory for the heap (i.e., the algorithms attempt to use heaps nearly as large as the total physical memory).

Note: -XX:+UseAdaptiveSizePolicy is on by default so I don&apos;t explicitly define it in my args.

Amazingly, once I added this to the args, removed ParNewGC (enabled UseParallelGC) the server ran flawlessly for days and days without a restart.  I was serving requests into the millions without a restart!!!  A partial arg list specific to these setting are below, please let me know your thoughts and concerns as I always enjoy constructive feedback.

java.args=-server -Xmx1024m -Xms1024m -XX:+AggressiveHeap -XX:+UseParallelGC -Dsun.io.useCanonCaches=false -XX:MaxPermSize=512m

Note: This was for a ColdFusion 8 instance. 
				</description>
				
				<category>Adobe</category>				
				
				<category>.NET</category>				
				
				<category>Site Performance</category>				
				
				<category>IT in General</category>				
				
				<category>Java</category>				
				
				<category>Universal Mind</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 15 Jul 2009 07:56:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2009/7/15/jvmconfig-Tuning-Tip-For-All-Server-Side-Java-Solutions</guid>
				
			</item>
			
			<item>
				<title>Flash 9 and 10 Compatibility Matrix</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2009/7/10/Flash-9-and-10-Compatibility-Matrix</link>
				<description>
				
				I was recently tasked on my current project to generate this.  I hope it helps some of you in communication regarding Flash support across multiple OS and Browsers.

&lt;a href=&quot;http://www.strikefish.com/download/Flash9And10CompatibilityMatrix.xls&quot;&gt;Matrix&lt;/a&gt; 
				</description>
				
				<category>Adobe</category>				
				
				<category>Flash</category>				
				
				<category>ActionScript</category>				
				
				<category>Flex</category>				
				
				<category>IT in General</category>				
				
				<category>Universal Mind</category>				
				
				<category>U of M</category>				
				
				<pubDate>Fri, 10 Jul 2009 15:57:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2009/7/10/Flash-9-and-10-Compatibility-Matrix</guid>
				
			</item>
			
			<item>
				<title>Writing for ColdFusion 9</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2009/5/11/Writing-for-ColdFusion-9</link>
				<description>
				
				I just got word that I will be contributing to the books supporting the ColdFusion 9 release.  

Adobe is making significant improvements as they continue to evolve the product.  

I am stoked to be involved for a third release and look forward to working with a stellar team of authors. 
				</description>
				
				<category>Adobe</category>				
				
				<category>IT in General</category>				
				
				<category>Universal Mind</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 11 May 2009 21:38:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2009/5/11/Writing-for-ColdFusion-9</guid>
				
			</item>
			
			<item>
				<title>Flex Camp Miami</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2009/2/3/Flex-Camp-Miami</link>
				<description>
				
				I wanted to blog a reminder that I am promoting Flex Camp Miami (http://www.flexcampmiami.com).  It will be on the University of Miami campus.  A great place to meet during the winter season and registration is only $30!!!!

The testimonials alone are reason to attend:  http://www.flexcampmiami.com/page.cfm/testimonials.

It&apos;s an opportunity to learn from the industry&apos;s finest, network, discuss the daily grind, etc.  I look forward to seeing you there!


Here is the Agenda:

&lt;table style=&quot;border: 1px solid #617598;&quot; border=&quot;1&quot; width=&quot;100%&quot;&gt;

&lt;tbody&gt;
&lt;tr bgcolor=&quot;#cccccc&quot;&gt;
&lt;td style=&quot;color: #000000;&quot;&gt;&lt;strong&gt;Time&lt;/strong&gt;&lt;/td&gt;
&lt;td style=&quot;color: #000000;&quot;&gt;&lt;strong&gt;Session and Speaker&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot;&gt;8:00-8:30 am&lt;/td&gt;
&lt;td&gt;Registration&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot;&gt;8:30-9:30 am&lt;/td&gt;
&lt;td&gt;Welcome and Keynote (Flex 4 Preview)&lt;br /&gt;&lt;em&gt;Brian Rinaldi, Universal Mind&lt;br /&gt;Greg Wilson, Adobe&lt;br /&gt;&lt;/em&gt;

&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot;&gt;&lt;em&gt;9:30-10:20 am&lt;/em&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;/page.cfm/agenda/david-tucker-working-with-data-in-air&quot;&gt;Working With Data in AIR&lt;/a&gt;&lt;br /&gt;&lt;em&gt;David Tucker, Universal Mind&lt;br /&gt;&lt;/em&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;10:20-10:40 am &lt;/td&gt;
&lt;td&gt;Break&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot;&gt;10:40-11:30 am&lt;/td&gt;

&lt;td&gt;&lt;a href=&quot;/page.cfm/agenda/in-search-of-aop-for-as3&quot;&gt;In Search of AOP for AS3&lt;/a&gt;&lt;br /&gt;&lt;em&gt;Maxim Porges, Highwinds&lt;br /&gt;&lt;/em&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;11:30-12:20 pm&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;/page.cfm/agenda/andrew-powell-merapi-or-how-to-blow-your-mind&quot;&gt;Merapi or How to Blow Your Mind with AIR&lt;/a&gt;&lt;br /&gt;&lt;em&gt;Andrew Powell, Universal Mind&lt;br /&gt;&lt;/em&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot;&gt;12:20-1:00 pm&lt;/td&gt;
&lt;td&gt;Lunch (provided)&lt;br /&gt;&lt;/td&gt;

&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot;&gt;1:00-1:50 pm&lt;/td&gt;
&lt;td&gt;User Experience Design Topic TBA&lt;br /&gt;&lt;em&gt;TBA&lt;br /&gt;&lt;/em&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot;&gt;1:50-2:40 pm&lt;/td&gt;
&lt;td&gt;&lt;a href=&quot;/page.cfm/agenda/brian-legros-continuous-integration-and-flex&quot;&gt;Continuous Integration and Flex&lt;/a&gt;&lt;br /&gt;&lt;em&gt;Brian LeGros, Highwinds&lt;br /&gt;&lt;/em&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2:40-3:00 pm&lt;/td&gt;

&lt;td&gt;Break&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot;&gt;3:00-3:50 pm&lt;/td&gt;
&lt;td&gt;&lt;em&gt;ScrapBlog.com Speaker&lt;/em&gt;&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot;&gt;3:50-4:40 pm&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;
Mate Framework&lt;br /&gt;&lt;em&gt;Laura Arguello, ASFusion&lt;/em&gt;
&lt;/td&gt;

&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot;&gt;4:40-5:00 pm&lt;/td&gt;
&lt;td&gt;Closing and Door Prizes&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


So as you can see, something for everyone.  Look forward to seeing you there. 
				</description>
				
				<category>Adobe</category>				
				
				<category>Flash</category>				
				
				<category>ActionScript</category>				
				
				<category>Flex</category>				
				
				<category>IT in General</category>				
				
				<category>U of M</category>				
				
				<category>Universal Mind</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 03 Feb 2009 09:59:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2009/2/3/Flex-Camp-Miami</guid>
				
			</item>
			
			<item>
				<title>ColdFusion createObject &quot;Component&quot; and Pathing Performance</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2008/12/12/ColdFusion-createObject-Component-and-Pathing-Performance</link>
				<description>
				
				I haven&apos;t blogged in awhile due to schedule, but had to blog this experience I recently had while attempting to stabilize an application and enhance performance. 

I have always taken for granted that createObject was lightning fast... Well, as fast as feasibly possibly under a given JVM.

I think I was dead wrong and this may be an issue for Adobe to address.  I am unclear on the internals of course.  But I have been up against OOMs on my current project and wanted to test out using soft reference (cached objects) and use duplicate from the cache rather than createObject.

Far stretch I know... but hey it was worth a try.  What was revealed was that performance was negligible and createObject was faster in some intervals.  Memory behaved the same, no real bonus.  So in discussion with a fellow consultant I told him I&apos;d ship a zip to him for test purposes as he had said he&apos;d seen a significant performance enhancement with duplicate (not true by the way).

What happened next totally shocked me.  To simplify the test code I snagged my VO.cfc out of it&apos;s proper place (several dirs down i.e. sitedir, com, bus, app, model, vo.. you get the idea) and put it in the root of the calling cfm.  I then removed all the pathing (dot notation) from my createObject call and executed the cfm to see if it would run ok after the change.  

The test was a loop of 10k over this create object call.  I was seeing execution times of around 30 seconds.  When I ran the updated code it went to 577 milliseconds...  I am still befuddled by this.  Is there that much overhead with pathing?  

I initially thought it was a mapping issue because I had been using mappings, but absolute path from root was just as slow.  

Please Adobe tell me this is Sun&apos;s jvm and not your code.  I know this is negligible with 100 or so creates, but imagine the boost if I did find something here. 

For clarification I am running on a Mac (OS X, CF running in JBOSS), but also tested on my old Dell (XP, CF running in JRUN).  I didn&apos;t see as dramatic a difference on WIntel, but my exec time went from 30 seconds to 4 seconds.  I am happy with 10x faster on Windows too...  

Any insight here is greatly appreciated.
Example Code:   
&lt;code&gt;
&lt;cfscript&gt;
  		currentTime = now();
  	  rqaArray = arrayNew(1);
  	  initTime = getTickCount();
			for (index=1; index lte 10000; index = index + 1)
      {
	      // pathing example replace vo reference with
	      //this pathing call com.mercer.mercerOnline.model.RQASummaryVO

	      rqa = createObject(&quot;component&quot;,&quot;RQASummaryVO&quot;);
	      rqa.rqaID                 = index;
				rqa.type                  = &quot;theType&quot;;
				rqa.createDate            = currentTime;
				rqa.submitDate            = currentTime;
				rqa.client                = &quot;currentClient&quot;;
				rqa.clientID              = &quot;clientID&quot;;
				rqa.status                = 6;
				rqa.userID                = 123456;
				rqa.agencyID              = &quot;agencyID&quot;;
				rqa.predecessorID         = 0;
				rqa.locked                = false;
				rqa.deleted               = false;
				rqa.title                 = &quot;The Title &quot;&amp;#index#;
				rqa.policyNumber          = &quot;thePolicyNum&quot;;
				rqa.agencyName            = &quot;agencyName&quot;;
				rqa.totalPremium          = &quot;totalPremium&quot;;
				rqa.hasMessages           = false;
				rqa.isAssigned            = false;
				rqa.assignedTo            = &quot;&quot;;
				rqa.proposedEffDate       = currentTime;
	      rqa.proposedExpDate       = currentTime;
	      rqa.agentName							= &quot;agentName&quot;;
				ArrayAppend(rqaArray,rqa);
			}

			endTime = getTickCount();

			totalTime = endTime - initTime;
&lt;/cfscript&gt;
&lt;cfdump var=&quot;#arrayLen(rqaArray)#&quot;&gt;
&lt;cfdump var=&quot;#rqaArray[10000]#&quot; /&gt;
&lt;cfdump var=&quot;#totalTime#&quot; /&gt;
&lt;/code&gt; 
				</description>
				
				<category>Adobe</category>				
				
				<category>Site Performance</category>				
				
				<category>IT in General</category>				
				
				<category>Java</category>				
				
				<category>Universal Mind</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Fri, 12 Dec 2008 16:25:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2008/12/12/ColdFusion-createObject-Component-and-Pathing-Performance</guid>
				
			</item>
			
			<item>
				<title>&lt;a href=&quot;http://www.spatialkey.com/&quot;  target=&quot;_blank&quot;&gt;Spatial Key&lt;/a&gt; (The Future of GIS)</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2008/8/18/a-hrefhttpwwwspatialkeycom--targetblankSpatial-Keya-The-Future-of-GIS</link>
				<description>
				
				I finally found some time to blog on what I deem a revolutionary software solution released by &lt;a href=&quot;http://www.universalmind.com&quot; target=&quot;_blank&quot;&gt;Universal Mind&lt;/a&gt;.  Having my head in GIS solutions; ESRI, MapQuest and the players they integrate with I state knowing full well based on what I have seen over this 7 year period that the approach taken to this solution goes far beyond any solution on the market and will provide tremendous benefits to any organization that retains and/or analyzes location based data.

You may be asking yourself, what is the benefit of &lt;a href=&quot;http://www.spatialkey.com/&quot;  target=&quot;_blank&quot;&gt;Spatial Key&lt;/a&gt; with regard to the data in question?  The quick response is that if you are dealing with large datasets spread globally, regionally, or even locally this software will save you time.  Please follow the &lt;a href=&quot;http://lawenforcement.spatialkey.com/&quot;  target=&quot;_blank&quot;&gt;Law Enforcement&lt;/a&gt; link to see how &lt;a href=&quot;http://www.spatialkey.com/&quot;  target=&quot;_blank&quot;&gt;Spatial Key&lt;/a&gt; is currently being utilized by the Ogden Police Department.

Imagine millions of data points immediately organized allowing the user to drill down, expedite reporting, and understand relationships of data that may not have been realized prior to using &lt;a href=&quot;http://www.spatialkey.com/&quot;  target=&quot;_blank&quot;&gt;Spatial Key&lt;/a&gt;.  This last item is important with regard to statistics associated with location data spread over time.  A real world scenario would be an event that created increases and or decreases of a given activity in certain locations (i.e sales, travel, instability, etc).  With Spatial Key the timeframe of this event can be filtered graphically in which the analytics behind this filter can be readily deduced.  See the demo &lt;a href=&quot;http://lawenforcement.spatialkey.com/spatialkey/law-enforcement/video.cfm?KeepThis=true&amp;TB_iframe=true&amp;height=515&amp;width=630&amp;modal=true&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt; and try out the various example applications &lt;a href=&quot;http://www.spatialkey.com/spatialkey/www/gallery/gallery_home.cfm&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;

As human beings we are visual creatures and when it comes to crunching numbers or aligning information what better approach is there than to understand where the data points are generated from and then drill into this data with a better understanding of what is occurring.  I have just touched on the surface at this point with regard to data integration with &lt;a href=&quot;http://www.spatialkey.com/&quot;  target=&quot;_blank&quot;&gt;Spatial Key&lt;/a&gt;.

In closing I have to comment on the incredibly intuitive visual cues built into viewing the data across a map backdrop.  These are features such as heat maps, heat grids, and graduated circles which will show you hot and cold spots within your data points.  There is also timeline playback support where animation of data across time will show how data changed within a given time period.

I look forward to your comments and questions regarding &lt;a href=&quot;http://www.spatialkey.com/&quot;  target=&quot;_blank&quot;&gt;Spatial Key&lt;/a&gt;. 
				</description>
				
				<category>Adobe</category>				
				
				<category>Universal Mind</category>				
				
				<category>Flash</category>				
				
				<category>ActionScript</category>				
				
				<category>Flex</category>				
				
				<category>IT in General</category>				
				
				<category>MapQuest</category>				
				
				<pubDate>Mon, 18 Aug 2008 20:06:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2008/8/18/a-hrefhttpwwwspatialkeycom--targetblankSpatial-Keya-The-Future-of-GIS</guid>
				
			</item>
			
			<item>
				<title>Quick Blog (Use mx:Form)</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2008/7/11/Quick-Blog-Use-mxForm</link>
				<description>
				
				I have been too busy to blog over the past couple months and this is more of a note than a blog entry.  I have come across a few applications in the past 6 months that had your standard CRUD forms.

The problem is that most of them used HBOX and VBOX in attempt to align Labels and TextInput items.  ACKKK!  These can significantly increase the size of your swf after compile in Flex Builder.  For form layout you can almost always use mx:Form.  The feature set behind this tag is very intuitive as well.

I&apos;ve seen developers write code to handle key press of the enter key in an effort to trigger the firing of a default button on the form. This is incorporated in the mx:Form tag also; you just point to the button via the defaultButton property.  The default button will fire when you click enter key on text input items.

I have attached a simple example of mx:Form with a default button displaying an alert.  Hope this helps and check out the language reference for more info as I didn&apos;t touch on all features: &lt;a href=&quot;http://livedocs.adobe.com/flex/201/langref/mx/containers/Form.html&quot; target=&quot;_blank&quot;&gt;mx:Form&lt;/a&gt;

Sample App:
&lt;code&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot; layout=&quot;absolute&quot; viewSourceURL=&quot;srcview/index.html&quot;&gt;
	
	&lt;mx:Script&gt;
		&lt;![CDATA[
			import mx.controls.Alert;
			
			private function showAlert(event:MouseEvent):void
			{
				Alert.show(&apos;You submitted the form dude. &apos; + &apos;Form Data: &apos; + formField.text );
			}
			
		]]&gt;
	&lt;/mx:Script&gt;
	
	&lt;mx:Form x=&quot;0&quot; y=&quot;0&quot; width=&quot;447&quot; height=&quot;488&quot; defaultButton=&quot;{submitButton}&quot;&gt;				

			&lt;mx:Label id=&quot;exampleForm&quot; text=&quot;Example Form&quot; /&gt;
			&lt;mx:FormItem id=&quot;lblFormField&quot; label=&quot;Form Field:&quot;&gt;
				&lt;mx:TextInput id=&quot;formField&quot; enabled=&quot;true&quot; cornerRadius=&quot;4&quot; text=&quot;Default text.&quot; toolTip=&quot;Enter some text.&quot;/&gt;
			&lt;/mx:FormItem&gt;
			&lt;mx:FormItem width=&quot;409&quot; height=&quot;25&quot;&gt;
				&lt;mx:Button id=&quot;submitButton&quot; label=&quot;Submit&quot; click=&quot;showAlert(event)&quot;/&gt;	
			&lt;/mx:FormItem&gt;		
		&lt;/mx:Form&gt;

	
&lt;/mx:Application&gt;

&lt;/code&gt;

&lt;object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;
		id=&quot;FormExample&quot; width=&quot;100%&quot; height=&quot;100%&quot;
		codebase=&quot;http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab&quot;&gt;
		&lt;param name=&quot;movie&quot; value=&quot;http://blog.strikefish.com/blog/flex/formExample/FormExample.swf&quot; /&gt;
		&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;
		&lt;param name=&quot;bgcolor&quot; value=&quot;#869ca7&quot; /&gt;
		&lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;
		&lt;embed src=&quot;http://blog.strikefish.com/blog/flex/formExample/FormExample.swf&quot; quality=&quot;high&quot; bgcolor=&quot;#869ca7&quot;
			width=&quot;100%&quot; height=&quot;100%&quot; name=&quot;FormExample&quot; align=&quot;middle&quot;
			play=&quot;true&quot;
			loop=&quot;false&quot;
			quality=&quot;high&quot;
			allowScriptAccess=&quot;sameDomain&quot;
			type=&quot;application/x-shockwave-flash&quot;
			pluginspage=&quot;http://www.adobe.com/go/getflashplayer&quot;&gt;
		&lt;/embed&gt;
&lt;/object&gt; 
				</description>
				
				<category>Adobe</category>				
				
				<category>ActionScript</category>				
				
				<category>Flex</category>				
				
				<category>IT in General</category>				
				
				<category>Universal Mind</category>				
				
				<pubDate>Fri, 11 Jul 2008 07:03:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2008/7/11/Quick-Blog-Use-mxForm</guid>
				
			</item>
			
			<item>
				<title>A Mashup That Makes Sense</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2008/4/15/A-Mashup-That-Makes-Sense</link>
				<description>
				
				Recently &lt;a href=&quot;http://www.infoaccelerator.net&quot; target=&quot;_blank&quot;&gt;Andy Powell&lt;/a&gt; won a WII for his submission into the 360 Flex | API Contest. 

His winning application is a great example of leveraging multiple APIs that at first glance, one may be challenged in connecting the dots with regard to how they could be integrated into a single intuitive application.  When I first looked at Andy&apos;s initial layout and functionality as intuitive as it was, I got stoked because I could see that this application could be enhanced visually and functionally; so I am blogging about the enhancements I made to that effect.

First, I had some .css in mind to give it that Ribbit Green theme.  I adjusted the layout of the various nested canvases and converted them to use a form which allows for formitem conciseness with regard to alignment etc and allots for a default button (integrated form &apos;enter key&apos; functionality).

I sized down the respective API images into the main panels control bar (will be applying links shortly) and enhanced the map functionality which allows for a unique icon (hotel) to identify the selected hotel from other hotel POIs on the map.  Each time a search is performed the past icon is returned to its initial state and the newly selected hotel gets the new icon (member variables used to allow for this).  I will be styling the MapQuest info windows that pop up with selection of a POI shortly as the very customizable MapQuest API is 100% extensible.

I then relocated the RIBBIT dial up interface and adjusted dialing status to persist in the connection labeling area rather than separately at the bottom of the form to save real estate.  Lastly, I wrapped it in a panel with the hotel details form and nested it within a panel along with the MapQuest tilemap component.  This panel will soon be a slide in that will open/close via grid selection and panel close feature.  Please check out the new app on Andy&apos;s site here; &lt;a href=&quot;http://www.infoaccelerator.net/hotelsearch/&quot; target=&quot;_blank&quot;&gt;Ribbit, Kayak, MapQuest Mashup&lt;/a&gt; and book your hotel today 8-).

FYI, souce code is located at Andy&apos;s Google code site here:
&lt;a href=&quot;http://andrewpowell.googlecode.com/&quot; target=&quot;_blank&quot;&gt;AP&apos;s GCode site&lt;/a&gt;

&lt;img src=&quot;http://blog.strikefish.com/blog/images//rmk1.gif&quot;&gt; 
				</description>
				
				<category>Adobe</category>				
				
				<category>Universal Mind</category>				
				
				<category>ColdFusion</category>				
				
				<category>Flash</category>				
				
				<category>Flex</category>				
				
				<category>Ribbit</category>				
				
				<category>MapQuest</category>				
				
				<category>ActionScript</category>				
				
				<category>IT in General</category>				
				
				<pubDate>Tue, 15 Apr 2008 09:37:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2008/4/15/A-Mashup-That-Makes-Sense</guid>
				
			</item>
			
			<item>
				<title>Render Me This</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2008/1/9/Render-Me-This</link>
				<description>
				
				I was recently working with item renderers on a project and wanted to post an example of using an ActionScript (class) based item renderer and compare it with an MXML version.

It is nice to have the option to choose either, but I like the control an ActionScript class gives the coder and it tends to yield a more lightweight approach than MXML.  

My first code block below is the AS class approach.  The renderer simply applies a currency format to a field of numbers in a data grid.  The second is utilizing the MXML approach.  As you can see they yield the same results.

Notice how both approaches override the data setter for the label class they extend. Also see how how listData is utilized to associate the drop-in item renderer with the data from the list control.  

With this rather basic example you can see how any control can be displayed via MXML or ActionScript and drawn out i.e. rendered in a list based class.

I have attached a &lt;a href=&quot;http://www.strikefish.com/download/renderexample.zip&quot;&gt;zipped&lt;/a&gt; project that displays 2 grids using both renderers.  I hope this helps you better understand the power of item renders and what you can do with them.

&lt;font color=&quot;#B84A45&quot;&gt;
*********  UPDATE: ************

I forgot to mention in this blog that a custom label could be applied via the DataGridColumn labelFunction to get the same effect in assigning a currency symbol.

Please see an example of the code below.
&lt;/font&gt;

&lt;code&gt;
	
&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;&gt;

    &lt;mx:Script&gt;
        &lt;![CDATA[
        import mx.controls.dataGridClasses.DataGridColumn;
        import mx.collections.ArrayCollection;

        [Bindable]
        private var cars:ArrayCollection = new ArrayCollection( [
            { Make: &quot;Infiniti&quot;, Model: &quot;G37&quot;, Year:2008, Cost: 44081 },
            { Make: &quot;Lexus&quot;, Model: &quot;IS 350&quot;, Year:2008, Cost: 45205 },
            { Make: &quot;BMW&quot;, Model: &quot;3 Series&quot;, Year:2008, Cost: 49100 } ]);
        
        // this function is call via the DataGridColumn labelFunction
        // and it utilizes the CurrencyFormatter below
        private function currencyLabelFunction(item:Object, column:DataGridColumn):String {
          return cf.format(item[&quot;Cost&quot;]);
        }		
        
       ]]&gt; 
    &lt;/mx:Script&gt;
    
    &lt;mx:CurrencyFormatter id=&quot;cf&quot; precision=&quot;2&quot;/&gt;
    
    &lt;mx:Panel title=&quot;Label Function Example&quot; layout=&quot;horizontal&quot;&gt;

      &lt;mx:DataGrid dataProvider=&quot;{cars}&quot; id=&quot;labelFuncCars&quot;&gt;
    		&lt;mx:columns&gt;
    				&lt;mx:DataGridColumn headerText=&quot;Make&quot; dataField=&quot;Make&quot; width=&quot;60&quot; /&gt;
    				&lt;mx:DataGridColumn headerText=&quot;Model&quot; dataField=&quot;Model&quot; width=&quot;60&quot; /&gt;
    				&lt;mx:DataGridColumn headerText=&quot;Year&quot; dataField=&quot;Year&quot; width=&quot;60&quot; /&gt;
    				&lt;mx:DataGridColumn headerText=&quot;Cost&quot; dataField=&quot;Cost&quot; width=&quot;100&quot; textAlign=&quot;right&quot; labelFunction=&quot;currencyLabelFunction&quot; /&gt;
    		&lt;/mx:columns&gt;
    	&lt;/mx:DataGrid&gt;
      
    &lt;/mx:Panel&gt;
&lt;/mx:Application&gt;

&lt;/code&gt;

CurrencyRendererAS Class
&lt;code&gt;
package renderers
{
  import mx.controls.Label;
  import mx.controls.dataGridClasses.DataGridListData;
  import mx.formatters.CurrencyFormatter;

  public class CurrencyRendererAS extends Label
  {
    private var cf : CurrencyFormatter = new CurrencyFormatter();
    
    public function CurrencyRendererAS()
    {
      super();
      
      // set precision for formatter
      cf.precision = 2;
    }
    
    // Override the set method for the data property.
    override public function set data(value:Object):void {
        super.data = value;
   
        if (value != null)
        {
            this.text = cf.format(value[DataGridListData(this.listData).dataField]);
            this.setStyle(&quot;textAlign&quot;,&quot;right&quot;);
        }

        super.invalidateDisplayList();
    }
  }
}

&lt;/code&gt;


CurrencyRendererMXML MXML
&lt;code&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;

&lt;mx:Label xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;
    width=&quot;100%&quot;&gt;
	&lt;mx:CurrencyFormatter id=&quot;cf&quot; precision=&quot;2&quot;/&gt;
	
   &lt;mx:Script&gt;
    &lt;![CDATA[
    import mx.controls.Label;
    import mx.controls.dataGridClasses.DataGridListData;
    import mx.formatters.CurrencyFormatter;
    
		override public function set data(value:Object):void {
        super.data = value;
   
        if (value != null)
        {
            this.text = cf.format(value[DataGridListData(this.listData).dataField]);
            this.setStyle(&quot;textAlign&quot;,&quot;right&quot;);
        }

        super.invalidateDisplayList();
    }
    ]]&gt;
  &lt;/mx:Script&gt;
&lt;/mx:Label&gt;
&lt;/code&gt;


AS Approach Output

  	&lt;object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;
			id=&quot;ASIndex&quot; width=&quot;368&quot; height=&quot;246&quot;
			codebase=&quot;http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab&quot;&gt;
			&lt;param name=&quot;movie&quot; value=&quot;http://blog.strikefish.com/blog/flex/renderer/ASIndex.swf&quot; /&gt;
			&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;
			&lt;param name=&quot;bgcolor&quot; value=&quot;#869ca7&quot; /&gt;
			&lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;
			&lt;embed src=&quot;http://blog.strikefish.com/blog/flex/renderer/ASIndex.swf&quot; quality=&quot;high&quot; bgcolor=&quot;#869ca7&quot;
				width=&quot;368&quot; height=&quot;246&quot; name=&quot;ASIndex&quot; align=&quot;middle&quot;
				play=&quot;true&quot;
				loop=&quot;false&quot;
				quality=&quot;high&quot;
				allowScriptAccess=&quot;sameDomain&quot;
				type=&quot;application/x-shockwave-flash&quot;
				pluginspage=&quot;http://www.adobe.com/go/getflashplayer&quot;&gt;
			&lt;/embed&gt;
	&lt;/object&gt;


MXML Approach Output

&lt;object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;
			id=&quot;MXMLIndex&quot; width=&quot;368&quot; height=&quot;246&quot;
			codebase=&quot;http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab&quot;&gt;
			&lt;param name=&quot;movie&quot; value=&quot;http://blog.strikefish.com/blog/flex/renderer/MXMLIndex.swf&quot; /&gt;
			&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;
			&lt;param name=&quot;bgcolor&quot; value=&quot;#869ca7&quot; /&gt;
			&lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;
			&lt;embed src=&quot;http://blog.strikefish.com/blog/flex/renderer/MXMLIndex.swf&quot; quality=&quot;high&quot; bgcolor=&quot;#869ca7&quot;
				width=&quot;368&quot; height=&quot;246&quot; name=&quot;MXMLIndex&quot; align=&quot;middle&quot;
				play=&quot;true&quot;
				loop=&quot;false&quot;
				quality=&quot;high&quot;
				allowScriptAccess=&quot;sameDomain&quot;
				type=&quot;application/x-shockwave-flash&quot;
				pluginspage=&quot;http://www.adobe.com/go/getflashplayer&quot;&gt;
			&lt;/embed&gt;
	&lt;/object&gt;

Label Function Output

&lt;object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;
			id=&quot;LabelFuncIndex&quot; width=&quot;368&quot; height=&quot;246&quot;
			codebase=&quot;http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab&quot;&gt;
			&lt;param name=&quot;movie&quot; value=&quot;http://blog.strikefish.com/blog/flex/renderer/LabelFuncIndex.swf&quot; /&gt;
			&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;
			&lt;param name=&quot;bgcolor&quot; value=&quot;#869ca7&quot; /&gt;
			&lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;
			&lt;embed src=&quot;http://blog.strikefish.com/blog/flex/renderer/LabelFuncIndex.swf&quot; quality=&quot;high&quot; bgcolor=&quot;#869ca7&quot;
				width=&quot;368&quot; height=&quot;246&quot; name=&quot;LabelFuncIndex&quot; align=&quot;middle&quot;
				play=&quot;true&quot;
				loop=&quot;false&quot;
				quality=&quot;high&quot;
				allowScriptAccess=&quot;sameDomain&quot;
				type=&quot;application/x-shockwave-flash&quot;
				pluginspage=&quot;http://www.adobe.com/go/getflashplayer&quot;&gt;
			&lt;/embed&gt;
	&lt;/object&gt; 
				</description>
				
				<category>Adobe</category>				
				
				<category>ActionScript</category>				
				
				<category>Flex</category>				
				
				<category>IT in General</category>				
				
				<category>Universal Mind</category>				
				
				<pubDate>Wed, 09 Jan 2008 23:21:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2008/1/9/Render-Me-This</guid>
				
			</item>
			
			<item>
				<title>Subclipse Bug on Flex Bldr Beta 3 Standalone on XP/Vista</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2007/12/22/Subclipse-Bug-on-Flex-Bldr-Beta-3-Standalone-on-XPVista</link>
				<description>
				
				I found myself grasping at straws on this one.  Thank the folks on the beta debug team and their public bug tracking system.  

The answer (walkthrough) is below, check the link for the details if you are interested.

Work around is:

- Help &gt; Software updates &gt; Find and install. Select search   
  for new features to install.

- Check the Europa discovery site and the SubEclipse update 
  site. (add the SubEclipse site via &apos;New Remote Site&apos; if it 
  isn&apos;t present http://subclipse.tigris.org/update_1.2.x/ )

- Click finish.

- Check SubEclipse and in the Europa discovery site check 
  &quot;Eclipse Java Development Tools&quot; under &quot;Java 
  Development&quot;.

- Click next and complete the wizard.

Note, make sure you only select the Subclipse sub-category or it will still bomb.

The bug at Adobe.com:  &lt;a href=&quot;http://bugs.adobe.com/jira/browse/FB-9525&quot; target=&quot;_blank&quot;&gt;Subclipse SVN plugin requires the feature org.eclipse.jdt&lt;/a&gt; 
				</description>
				
				<category>Adobe</category>				
				
				<category>Apollo</category>				
				
				<category>Flex</category>				
				
				<category>IT in General</category>				
				
				<category>Universal Mind</category>				
				
				<pubDate>Sat, 22 Dec 2007 16:55:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2007/12/22/Subclipse-Bug-on-Flex-Bldr-Beta-3-Standalone-on-XPVista</guid>
				
			</item>
			
			<item>
				<title>Why VOs (transfer objects) are good...but they can be abused like...</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2007/11/29/Why-VOs-transfer-objects-are-goodbut-they-can-be-abused-like</link>
				<description>
				
				any other design pattern....

Sorry for the confusing title, but long titles are rather lame.  So you&apos;re a flex cf, java, or php developer and you are leveraging all the beautiful one to one mapping associated with server and client object creation.

&quot;YES!&quot;, you said.  No more guess work; my server vals returned can be readily passed around within my AS code with the ease of code insight! Ctrl-space... wow theres my property!  Ok, getting tacky I know.

So we embark on our design of a sytem always using VOs no matter the cost.  Eee gaadd stop now.  VOs, pending on design approaches may possibly have multiple layers of nested VOs YIKES!  

Everyone knows that Rambo&apos;s weapons of choice were the bone cutting hunting knife and explosive bow and arrows.  But there were times when he had to pull in the heavy artillery or perform a sneak attack with a much more lightweight approach like a choke hold (ahh, the violence of my youth...).

This is why VOs can be a problem if implemented without understanding the performance ramifications that can be incurred if they are always used.

Here&apos;s a real world scenario.  Requesting an array of 100+ VOs from your middle tier that each have nested arrays of child VOs.  Imagine just having two child VOs and the impact that could have on performance with this approach.

You call in to pull back the parent VOs that contain an array of child VOs (say 5) that all need to get created for each item in the array.  So in this process we are creating 100 parent objects and internal to each we are creating 10 child VOs.  This yields 1000 objects which each need to get created and the memory and process grow each time you do so on your middle tier (now add just a few users doing this incrementally over the first couple of hours).  

I&apos;m being facetious here of course as this isn&apos;t a very high number.  But why return such a dense object to the client unless you were going to use it.  There is a lot of wasted horsepower with this approach.  Think of the scene with Rambo emptying that M60 E4 machine gun and never hitting his target... &lt;img src=&quot;http://blog.strikefish.com/blog/images/rambo.jpg&quot; width=&quot;100&quot; height=&quot;114&quot; alt=&quot;Rambo&quot; /&gt;

A better approach is to pass back a snapshot of the data directly from your middle tier and pull back its VO representation when an edit needs to be performed or the VO truly is required to facilitate a process in the application.

So if you are going to populate a grid, I don&apos;t recommend doing it with VOs and if you absolutely have to create an array of VOs understand the possible performance impact (and data stagnation) that can ensue if the VO is of a complex nature and how it can impact the health of your server and ultimately the user experience.  

The J2EE Core Pattern docs on Transfer Object speak to this.  Check out the &quot;Consequences&quot; section of caching large sets of VOs. Line from the article:  There is a trade-off associated with this strategy. Its power and flexibility must be weighed against the performance overhead...  &lt;a href=&quot;http://java.sun.com/blueprints/corej2eepatterns/Patterns/TransferObject.html&quot; target=&quot;_blank&quot;&gt;THE LINK&lt;/a&gt; 
				</description>
				
				<category>Adobe</category>				
				
				<category>.NET</category>				
				
				<category>Site Performance</category>				
				
				<category>IT in General</category>				
				
				<category>Flex</category>				
				
				<category>Java</category>				
				
				<category>Universal Mind</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 29 Nov 2007 20:11:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2007/11/29/Why-VOs-transfer-objects-are-goodbut-they-can-be-abused-like</guid>
				
			</item>
			
			<item>
				<title>Flex ColdFusion Extension Wizard Gotcha</title>
				<link>http://blog.strikefish.com/blog/index.cfm/2007/11/11/Flex-ColdFusion-Extension-Wizard-Gotcha</link>
				<description>
				
				This entry will hopefully be brief and to the point in regard to the title.  I want to start off by stating how much I like the ColdFusion extension support in Flex 2 and hope to see Adobe add extenstions that support other languages/middle tier solutions as well hint: (java, php, c#).  

There is nothing like beginning your application architecture and development with an out of the box mvc approach utilizing well known approaches to server side development utilizing delegates, services, daos, gateways, and value objects.  

Where I see a major problem with the extension is how it is implemented.  I have been involved with several projects that have utilized Flex and ColdFusion and upon initially beginning my trek into Flex 2 I saw this issue right away only because I have been working with ColdFusion for 10 years, have consulted on its benefits, scaled servers, architected highly successful and efficient enterprise solutions with it, and know the do&apos;s and don&apos;ts...

The problem I am speaking of with the CF extension implementation is the iterating over read functions in the data access object cfcs.

To be more clear, in the templated or skeleton dao cfcs there are db calls made, mostly crud calls.  The read function I am discussing here is &quot;r&quot; in crud.  The problem is that in many cases I&apos;ve seen engineers design a composite or aggregate VO.  This is a VO cfc that contains other VO cfcs.

This is a perfectly efficient and best practice OOP approach that ColdFusion handles very well.  The problem arises when a child resultset of ids (usually a query or array) is used to iterate over and call the read function in the dao to get the vo properties from the db to return via remoting to the Flex application.  

The main issue here is performance, specifically with the possible 100s of calls that can be made to the database in one ColdFusion request from the application.  Imagine a dump truck going 200 times to the gravel pit taking one pebble, with today&apos;s gas prices I don&apos;t think you&apos;d last long on the job if you took that approach 8-)... This is what you are doing when you loop over queries.  Not only could these calls prove to be slow and taxing on the database but it can also lock up threads in ColdFusion and create cpu and memory spiking out of the shoot.  You also have to deal with any kind of network latency that may exist between your CF server and the database as well.  AAAACKKKKK! 

But there is a solution:  First a band-aid needs to be applied.  For these complex objects an investigation must be made to locate where these iterating processes could be going on.  Second, there is a function in ColdFusion that automagically converts a query field to a comma-delimited value list(or delimiter of your choosing).  The function is called &quot;valueList(query.column, &apos;,&apos;)&quot; there is also a quotedValueList for strings.  With this list you could then use the SQL IN clause on the hopefully indexed id field used to pull back the child VO data.  Add another function in the dao or better yet the data gateway that specifies readMultiple or getMulipleObjectName...

Once this is done the code should truly be refactored to call the database only once for all its data (think one cf call/one db call).  If you did not know ColdFusion is one of the most robust languages when integrating with the more popular dbms on the market (Oracle, SQL Server, MySQL, DB2, Informix).  The cfstoredproc tag allows you to call into a stored procedure to get procedure resultsets.  

cfstoredproc also allows a developer to return multiple resultsets from a stored procedure to ColdFusion.  So, one call to a stored procedure in Oracle that returns 2,3,4,or more ref cursors to ColdFusion.  These could be all your objects&apos; data which only requires you to loop once over all of them (maybe some nesting and brief logic to create them, but still 1000s of times faster than separate db calls for each loop).

This may be one of the drier entries I&apos;ve had (no code, pictures, jokes).  But I hope it helps you when using and not abusing the ColdFusion extension wizards in Flex 8-). 
				</description>
				
				<category>Adobe</category>				
				
				<category>Database</category>				
				
				<category>Site Performance</category>				
				
				<category>IT in General</category>				
				
				<category>Flex</category>				
				
				<category>Universal Mind</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Sun, 11 Nov 2007 19:51:00 -0400</pubDate>
				<guid>http://blog.strikefish.com/blog/index.cfm/2007/11/11/Flex-ColdFusion-Extension-Wizard-Gotcha</guid>
				
			</item>
			</channel></rss>