RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Mark A Kruger
e- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 07, 2005 12:22 PM To: CF-Talk Subject: RE: Please help correct an assumption regarding Application.cfm > -Original Message- > From: Mark A Kruger [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 07, 2

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Jim Davis
> -Original Message- > From: Mark A Kruger [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 07, 2005 1:14 PM > To: CF-Talk > Subject: RE: Please help correct an assumption regarding Application.cfm > > Jim, > > nice tip about the names... I didn't

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Mark A Kruger
ct an assumption regarding Application.cfm > -Original Message- > From: Mark A Kruger [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 07, 2005 12:53 PM > To: CF-Talk > Subject: RE: Please help correct an assumption regarding Application.cfm > > Damien, > >

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Mark A Kruger
cool... -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 07, 2005 12:08 PM To: CF-Talk Subject: RE: Please help correct an assumption regarding Application.cfm > -Original Message- > From: Mark A Kruger [mailto:[EMAIL PRO

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Damien McKenna
> -Original Message- > From: Mark A Kruger [mailto:[EMAIL PROTECTED] > > It's likely that you are setting application variables > because you say they "are stored in the application scope". > > I have a blog on Ap variables that might shed some light. > http://mkruger.cfwebtools.com/ind

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Jim Davis
> -Original Message- > From: Mark A Kruger [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 07, 2005 12:53 PM > To: CF-Talk > Subject: RE: Please help correct an assumption regarding Application.cfm > > Damien, > > It's likely that you are setting a

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Mark A Kruger
Damien, It's likely that you are setting application variables because you say they "are stored in the application scope". Application variables are designed to be set once and read many times - or at least ap variables like DSN are designed this way. Just changing the file will not reload these

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Damien McKenna
> -Original Message- > From: Ryan Guill [mailto:[EMAIL PROTECTED] > > No, my understanding of application.cfm is more like an implicit > include on every template that is requested by the browser and runs > before anything else. I believe it is compiled and run every time. So what about

Re: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Bryan Stevenson
The big question is what are the CF Admin settings regarding the caching of cfm files? You can have it set NOT to check for updates (as you would in production to get better performance) and always use the cached version HTH Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Developme

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Kerry
except not compiled every time, just run? unless you use cfadmin to stop cf from saving any classes? -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: 07 September 2005 17:30 To: CF-Talk Subject: Re: Please help correct an assumption regarding Application.cfm No, my

Re: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Ryan Guill
No, my understanding of application.cfm is more like an implicit include on every template that is requested by the browser and runs before anything else. I believe it is compiled and run every time. On 9/7/05, Damien McKenna <[EMAIL PROTECTED]> wrote: > I have an assumption regarding Application