Skip to Content

Category: coldfusion

Get memory heap and non heap usage on Railo

To get the Memory usage on Railo (heap and non-heap), you can use the getMemoryUsage() function, like so: <cfdump var=’#getmemoryUsage(‘heap’)#’> <cfdump var=’#getmemoryUsage(“non_heap”)#’> Pretty simple.  But something that isn’t well documented.  I hope this helps someone! -Scott

Read more

ColdFusion CacheGet Variable Does Not Exist Gotcha

I am using Railo and EHCache to cache an array of 300,000 items from a database that need to be updated every 30 minutes.  So, naturally, I use the CacheGet() and CachePut() functions. Here’s my code, really simple: <cfset cachedURLList = cacheGet(“URLList”)> Every few minutes I would get an error report from our server….”variable [CACHEDURLLIST] doesn’t exist”. […]

Read more

Updating the Solr Engine in ColdFusion

I’m following up on my CFSummit 2013 blog post, a few people have asked me about this, so I wanted to make a page dedicated to this topic. ColdFusion 10 ships with Solr version 3.4 (Solr Specification Version: 3.4.0.2012.02.02.15.09.05 ).  It looks like they got the source code from the git repository on February 2nd, […]

Read more

My ColdFusion Summit 2013 Experience

So I went to my first developer conference last week, the Adobe ColdFusion Summit 2013 hosted by Adobe at the Mandalay Bay Hotel and Casino in Las Vegas.  It was my first time meeting a lot of people in the community. The keynotes were great, they really got me excited for ColdFusion Splendor, which should […]

Read more
Back to top