RE: Custom Tags Folder

2005-12-08 Thread Snake
Cfimport is fastest Cf_tagname next Then cfmodule -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: 08 December 2005 01:26 To: CF-Talk Subject: Re: Custom Tags Folder cfmodule is supposed to be slower than the 'cf_' method. Anyone have any idea how much slower

Re: Custom Tags Folder

2005-12-08 Thread Raymond Camden
What tests have you done to show cf_ is faster than cfmodule? On 12/8/05, Snake [EMAIL PROTECTED] wrote: Cfimport is fastest Cf_tagname next Then cfmodule -- === Raymond Camden, Director of Development for Mindseye, Inc

RE: Custom Tags Folder

2005-12-08 Thread Snake
Using nested tags. Russ -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 08 December 2005 13:28 To: CF-Talk Subject: Re: Custom Tags Folder What tests have you done to show cf_ is faster than cfmodule? On 12/8/05, Snake [EMAIL PROTECTED] wrote: Cfimport

Re: Custom Tags Folder

2005-12-08 Thread Raymond Camden
-Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 08 December 2005 13:28 To: CF-Talk Subject: Re: Custom Tags Folder What tests have you done to show cf_ is faster than cfmodule? On 12/8/05, Snake [EMAIL PROTECTED] wrote: Cfimport is fastest Cf_tagname

RE: Custom Tags Folder

2005-12-08 Thread Snake
Matter of preference then, as I prefer using CFIMPORT. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 08 December 2005 13:46 To: CF-Talk Subject: Re: Custom Tags Folder Eh? You mean wrapping the calls with a timer type tag? If so, I have not found that. My

RE: Custom Tags Folder

2005-12-08 Thread Mark Fuqua
download a copy from www.productivityenhancement.com Post back and let us know if it works for your applications. Mark -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 8:28 AM To: CF-Talk Subject: Re: Custom Tags Folder What tests

Custom Tags Folder

2005-12-07 Thread Brian Peddle
Not sure this is possible. We have a version of an application and we are releasing an updated version. Some of the Custom Tags have been updated along with code. We plan on rolling this out a few clients at a time. Is it possible to set some type of application variable to override the

Re: Custom Tags Folder

2005-12-07 Thread Barney Boisvert
Custom tag paths are per server/sandbox, with no way to control them at a more granular level. You might look into CFIMPORT against a CF mapping, which is far more flexible, but would probably require some pretty invasive changes to make work on the existing apps. CF mappings are also

Re: Custom Tags Folder

2005-12-07 Thread Sam Farmer
Take a look at using cfimport taglib=, that may solve your problem, although you will have to change how you call each tag. You can define a custom tag folder in the administrator but they are global settings so would affect all code you run on that machine. Cheers, Sam F On 12/7/05, Brian

Re: Custom Tags Folder

2005-12-07 Thread Jim McAtee
PM Subject: Custom Tags Folder Not sure this is possible. We have a version of an application and we are releasing an updated version. Some of the Custom Tags have been updated along with code. We plan on rolling this out a few clients at a time. Is it possible to set some type

Re: Custom Tags Folder

2005-12-07 Thread Matt Robertson
cfmodule is supposed to be slower than the 'cf_' method. Anyone have any idea how much slower? I use cfmodule exclusively precisely for what Jim is talking about. I typically keep tags site-specific as well. Otherwise, what happens when one site on the server wants to update their

Re: Custom Tags Folder

2005-12-07 Thread Barney Boisvert
I typically keep tags site-specific as well. Otherwise, what happens when one site on the server wants to update their tag-dependent code and the other 39 don't? Exactly. I'd recommend CFIMPORT over CFMODULE for this, but any kind of global custom tag path stuff is right out. Set up a

Multiple instances Custom Tags folder

2005-11-28 Thread Snake
Found another strange bug when running multiple instances. Each instance looks for custom tags in the default cfusion instances Custom Tags folder, and not it's own. Oh joy of joys -- Snake ~| Discover CFTicket - The leading

Re: Multiple instances Custom Tags folder

2005-11-28 Thread Andy Allan
strange bug when running multiple instances. Each instance looks for custom tags in the default cfusion instances Custom Tags folder, and not it's own. Oh joy of joys -- Snake ~| Discover CFTicket - The leading

Re: Multiple instances Custom Tags folder

2005-11-28 Thread Douglas Knudsen
tags in the default cfusion instances Custom Tags folder, and not it's own. Oh joy of joys -- Snake ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com

RE: Multiple instances Custom Tags folder

2005-11-28 Thread Snake
that they refer to the correct paths. -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: 28 November 2005 14:36 To: CF-Talk Subject: Re: Multiple instances Custom Tags folder If you modify path based settings in the cfusion instance - even just submitting the page without making

Re: Multiple instances Custom Tags folder

2005-11-28 Thread Andy Allan
to the correct paths. -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: 28 November 2005 14:36 To: CF-Talk Subject: Re: Multiple instances Custom Tags folder If you modify path based settings in the cfusion instance - even just submitting the page without making changes

RE: Multiple instances Custom Tags folder

2005-11-28 Thread Snake
: 28 November 2005 15:15 To: CF-Talk Subject: Re: Multiple instances Custom Tags folder Yeah, this is a CF7 thing because it's to do with the new Enterprise Manager. The cfusion instance isn't supposed to be used in production. It's merely a template for you to use to create your production

Re: Multiple instances Custom Tags folder

2005-11-28 Thread Raymond Camden
One more reason to use a mapping and cfmodule when calling custom tags. ;) On 11/28/05, Snake [EMAIL PROTECTED] wrote: Found another strange bug when running multiple instances. Each instance looks for custom tags in the default cfusion instances Custom Tags folder, and not it's own. Oh joy

RE: Multiple instances Custom Tags folder

2005-11-28 Thread Dave Watts
This seems a but silly that your not meant to use the default instance, otherwise it is a totally waste of memory as each instance takes up around 200mb. 200 MB? That's a lot of memory for an instance that's not doing anything. On my machine, an idle instance takes about 40-50 MB. But

RE: Multiple instances Custom Tags folder

2005-11-28 Thread Snake
PROTECTED] Sent: 28 November 2005 15:41 To: CF-Talk Subject: RE: Multiple instances Custom Tags folder This seems a but silly that your not meant to use the default instance, otherwise it is a totally waste of memory as each instance takes up around 200mb. 200 MB? That's a lot of memory