Re: Default Values for Built-in Function Optional Parameters

2014-03-10 Thread Carl Von Stetten
Byron, That's the problem with positional vs. named arguments on BIFs. I ran into this with a cross-platform app that needed to run on ACF & Railo. Railo supports named parameters for some BIFs (including cachePut() ), but ACF doesn't. So I had to split my caching function into separate CF

Re: Default Values for Built-in Function Optional Parameters

2014-03-10 Thread Russ Michaels
well the idletime, timespan and region are all optional according to the docs, so perhaps this is a bug. what happens if you exclude region as well, perhaps it is an all or nothing situation with the optional attribs ? On Mon, Mar 10, 2014 at 3:25 PM, Byron Mann wrote: > > I somehow never had

Default Values for Built-in Function Optional Parameters

2014-03-10 Thread Byron Mann
I somehow never had occasion to do this using a CF built-in function, but would like to by-pass entering some of the optional parameters and use "defaults". Specifically I've created a caching region, and will just be using the defaults for the time-outs. CachePut(id, value, [timeSpan], [idleTim