ColdFusion 2018 Add-on installers

ColdFusion 2018 Add-on installers are available on https://www.adobe.com/support/coldfusion/downloads.html It includes installers for: COLDFUSION (2018 RELEASE) PERFORMANCE MONITORING TOOLSET COLDFUSION (2018 RELEASE) SERVER AUTO-LOCKDOWN COLDFUSION (2018 RELEASE) API MANAGER COLDFUSION SILENT INSTALLER PROPERTIES  

ColdFusion (2018 release) launch webinar slide deck

Thanks to all of you who attended our ColdFusion (2018 release) launch webinar on Thursday at 8:30 pacific time. Thank you for all the positive feedback on ColdFusion (2018 release). The recording of the webinar will be posted soon. As promised, here is the download link for the slide deck.

Adobe ColdFusion Future Direction Survey – II

Here is the link for a really important survey for us here at Adobe. Your responses will help determine some of the potential future directions of the product. This survey is the second in the series of future direction surveys posted by us. Irrespective of your participation in the first one, we need you to participate in this survey. Although not mandatory, it will be very useful if you can leave your contact information in the survey response for us to […]

ColdFusion 2018 features Webinar by Rakshith Naresh

  Learn about the new exciting features in ColdFusion 2018. Join the webinar hosted by ColdFusion Product manager Rakshith Naresh today at 8:30 AM PST. https://cf2018release07192018.meetus.adobeevents.com/ Register Now

ColdFusion Bloggers is Alive

A short note to alert everyone that ColdFusionBloggers.org is back online and back to aggregating your blog posts. The great Raymond Camden created this awesome resource and technically it will always be his. I happen to be the current caretaker if you will of this valuable service. If anyone was wondering why Ray decided to step away from ColdFusion Bloggers, see his blog post here. I reached out to Ray and he granted me the ‘keys’ so to speak. Thank […]

Arrays and String enhancements in ColdFusion 2018

ColdFusion 2018 introduces a good set of enhancements on Language. In this port, we will be looking at all the feature enhancements around Arrays and Strings. Typed Arrays ColdFusion has always been a type-unaware language, with ColdFusion internally guessing the type of the object in order to perform appropriate actions on the object. ColdFusion 2018 addresses concerns on being more type friendly, while being backward compatible with two new features – Datatype Preservations and Typed Arrays. Datatype preservations ensure the […]

OOP and ColdFusion – Part 2

In my previous blog, I wrote about the following OOP features: Abstraction Encapsulation Inheritance Polymorphism Abstract CFCs & Methods In ColdFusion 2018, we support ‘Covariant Method Return Type’. This is another OOP concept and has been adopted by many modern programming languages. Covariant Method Return Type Most modern programming languages support ‘subtyping’. Let me explain subtyping by an example. If the return type of my class function is ‘Animal’ while overriding the function in a subclass, you can specify the […]

Which is Better for your Company and ColdFusion Apps? Control or Speed?

Do you feel like your company is moving in slow-motion? Would you like your company to be more agile, which is to be nimble or the ability to move quickly and easily. What about your ColdFusion applications? Do they move as quickly and efficiently as you would like? Speed takes a few key things, among them, willingness to let go of control and being more flexible. Remember what legendary race car driver Mario Andretti once said, “If everything seems under […]

Performance Monitoring Toolset – Auto Connector Tuning

Connector tuning is one of the essential part of setting ColdFusion Server for production deployment. Incorrect values lead to Service Unavailable or Server too busy errors. With ColdFusion 2018 release, most of these assumptions can we verified with actual data. With auto connector tuning, Realtime traffic and load data on the connector will be tracked and displayed on Performance Monitoring Toolset. Admin/developers can log into the Performance Monitoring Toolset to visualize the load on individual site/connector on a time series […]

New ColdFusion Release Adds Performance Monitoring Toolset for Measuring, Monitoring and Managing High-Performing Web Apps

Today, we’re very excited to announce the 2018 release of Adobe ColdFusion. This release builds on Adobe’s industry-leading solution for creating and deploying scalable, high-performing web applications in CFML. Now in ColdFusion, we’ve added an all-new Performance Monitoring Toolset, a standalone server with low overhead to control and optimize applications and a new auto lockdown installer to help increase security in the Production Server. In addition, web developers can now boost the performance of their applications by taking advantage of […]

Named Parameters in ColdFusion

Named parameters enable you to associate argument with the parameter’s name rather than with the parameter’s position in the parameter list. They can be used in functions, constructors. In earlier versions of ColdFusion, named parameters were allowed in user-defined functions and in component constructors.  We are introducing named parameters for built-in functions with ColdFusion 2018. Before ColdFusion (2018 release), the order of parameters in a BIFs was necessarily fixed, since it was the only way that CF could identify which value is […]

Thread Dump Analysis using Performance Monitoring Toolset

Thread Dump Analysis Using Performance Monitoring Toolset Thread Dump is one of the most common things you perform when encountered with performance issues. For detecting faulty threads degrading your ColdFusion server, a meaningful analysis of thread dump is very useful. Issues such as deadlocks, lock contention and excess CPU utilization by individual thread dumps can be resolved by visualizing the states of individual thread dumps. Maximum throughput from the app can be achieved by rectifying the status of each thread provided […]