raghuonflex.wordpress.com
Speaking at the Flash Platform & CF pre-Launch event in Chennai | FLEXing My Muscle
https://raghuonflex.wordpress.com/2009/06/19/speaking-at-the-flash-platform-cf-pre-launch-event-in-chennai
My escapades with RIAs – FLEX, Apollo, AJAX, Flash …etc. Speaking at the Flash Platform and CF pre-Launch event in Chennai. On the 27th June 2009, The CF and Flex User Groups in Chennai are collaborating to conduct a Flash Platform and CF pre-Launch event at Hotel Dee Cee Manor in Chennai. It is a full day event with ColdFusion and Flash Platform Sessions followed by Hands-on experience using Flash Builder and ColdFusion. Bring your laptops so that you can experience the software yourselves. I am a Flex ...
rupeshk.org
Rupesh Kumar - Blog on ColdFusion, Java and related technologies
http://www.rupeshk.org/blog
My Views on ColdFusion, Java and related technologies. Issues with .NET integration in ColdFusion 9.0.1. Posted by Rupesh Kumar. To fix this, you need to uninstall .NET integration services and re-install it using “ColdFusion 9.0.1 .NET Integration Service Installer” provided at http:/ www.adobe.com/support/coldfusion/downloads.html. ColdFusion Survey : We are listening. Posted by Rupesh Kumar. Http:/ www.surveymonkey.com/s/ColdFusionServer. CFBuilder tip : TailView can kill server performance. Is a grea...
coldfused.blogspot.com
Coldfused?: ColdFusion ORM : Troubleshooting - 'Lazy' does not work
http://coldfused.blogspot.com/2009/07/coldfusion-orm-troubleshooting-does-not.html
My Views on ColdFusion, Java and related technologies. Friday, July 31, 2009. ColdFusion ORM : Troubleshooting - Lazy does not work. Few days back Manju. The related entity was in-fact getting loaded immediately. (Question for you - how will you know that lazy is working or not? This got me thinking - Why would a relation get loaded immediately even after it is marked lazy? And then suddenly it hit me - what if memory tracking is swithched on? So the lesson - If the 'memory tracking' is enabled on the se...
coldfused.blogspot.com
Coldfused?: July 2009
http://coldfused.blogspot.com/2009_07_01_archive.html
My Views on ColdFusion, Java and related technologies. Friday, July 31, 2009. ColdFusion ORM : Troubleshooting - Lazy does not work. Few days back Manju. The related entity was in-fact getting loaded immediately. (Question for you - how will you know that lazy is working or not? This got me thinking - Why would a relation get loaded immediately even after it is marked lazy? And then suddenly it hit me - what if memory tracking is swithched on? So the lesson - If the 'memory tracking' is enabled on the se...
rupeshk.org
ColdFusion ORM : Performance tuning - Fetching Strategy | ColdFused?
http://www.rupeshk.org/blog/index.php/2009/09/coldfusion-orm-performance-tuning-fetching-strategy
My Views on ColdFusion, Java and related technologies. Laquo; How to use .NET Generic classes from ColdFusion. ColdFusion ORM : Performance tuning – Lazy loading. ColdFusion ORM : Performance tuning – Fetching Strategy. Thankfully ORM engine like Hibernate provides various hooks to optimize the sql as well no of trips that will be made to the database. The most important of these hooks is “ fetching strategy. 8221; which defines what. Data will be fetched, when. And fetch=”select”. With this strategy, on...
rupeshk.org
ColdFusion ORM : What is “N+1 Select problem” | ColdFused?
http://www.rupeshk.org/blog/index.php/2009/09/coldfusion-orm-what-is-n1-select-problem
My Views on ColdFusion, Java and related technologies. Laquo; ColdFusion ORM : Performance tuning – Lazy loading. ColdFusion ORM : Using DB Views instead of Table. ColdFusion ORM : What is “N 1 Select problem”. In my last two posts, I mentioned that immediate fetching or lazy fetching can cause ‘N 1 select problem’. If you are wondering what exactly is this, read on. Consider the example of Department and Employees. When you call EntityLoad(“Department”), following sqls will be executed. This entry was p...
rupeshk.org
Using DB Views instead of Table in ColdFusion ORM | ColdFused?
http://www.rupeshk.org/blog/index.php/2009/09/coldfusion-orm-using-db-views-instead-of-table
My Views on ColdFusion, Java and related technologies. Laquo; ColdFusion ORM : What is “N 1 Select problem”. Advanced ColdFusion ORM @MAX. ColdFusion ORM : Using DB Views instead of Table. One of the frequent question that comes up for ORM is – Can I use database Views instead of the table? And the answer is “of course”! This entry was posted on Tuesday, September 15th, 2009 and is filed under coldfusion. You can follow any responses to this entry through RSS 2.0. You can leave a response. So long as the...
rupeshk.org
ColdFusion ORM : Performance tuning - Lazy loading | ColdFused?
http://www.rupeshk.org/blog/index.php/2009/09/coldfusion-orm-performance-tuning-lazy-loading
My Views on ColdFusion, Java and related technologies. Laquo; ColdFusion ORM : Performance tuning – Fetching Strategy. ColdFusion ORM : What is “N 1 Select problem”. ColdFusion ORM : Performance tuning – Lazy loading. In the previous post. We talked about different fetching strategies and when to use them. In this post, we will go little deep in lazy loading which is the most popular and commonly used fetching strategy. This is the default lazy loading that applies to collection. Lt;cfproperty name=depar...