> FYI, here it is: > > http://www.halhelms.com/index.cfm?fuseaction=writings.displayO > nScreen&writing=TenReasonsCompaniesLikeJava.htm > > "Java is a high-performance language. Java with JSP (similar to > ColdFusion for presentation) is over 10 times faster than using > ColdFusion. A single JSP server can handle 10 times the number of > simultaneous requests that ColdFusion can.. Can you scale CF by > adding hardware? Sure, but each server costs both hardware and > software licensing money and all these must be administered." > > I'm assuming the reference is to CFMX? Not sure.
I have no idea. I haven't seen any conclusive benchmarks comparing CFMX to JSP. I'd take issue with his statement that Java is a "high-performance language" to some degree, I think, anyway, but it's largely irrelevant to my argument. In a "real" application, you're not going to see the performance differences he's touting. Take a look at your debug output for your own applications; where do you think you're likely to see the most time consumed? In my experience, this has been database interaction. Do you expect queries to run ten times faster from JSP? Now, on the other hand, let's say you write an application that does lots of math, or lots of string manipulation stuff. Well, that stuff may well run faster in JSP - maybe even ten times faster. But that's not what's in most web applications, and in general, that stuff usually doesn't belong in the presentation layer of a web application anyway. In a well-architected J2EE web application, you probably wouldn't do most of that in JSP, either - you'd write a Java class and invoke it. You can easily do the same from CF, largely negating the speed difference in the one place where it may be significant. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Get the mailserver that powers this list at http://www.coolfusion.com Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

