Re: Replicate cache across multiple CF servers

2014-07-18 Thread Cameron Childress
On Thu, Jul 17, 2014 at 5:10 PM, Uday Patel wrote: I have an application running on single server and i was caching some commonly used data in Application scope. There is a logic tied in my caching object such that when data changes the cache is rebuild. Now we are moving to clustered

Re: Replicate cache across multiple CF servers

2014-07-18 Thread Russ Michaels
what I also used to do in the early days, was to periodically dump the application scope out to a wddx file on a network share.~ and load this file in from all servers. I also did the same with users sessions as well, which was an easy way to do session replication On Fri, Jul 18, 2014 at 2:37

Re: Replicate cache across multiple CF servers

2014-07-18 Thread Scott Stewart
this sounds like a job for client variables. Set up a blank table in your DB, create a datasource for it in the CF Admin. While in the CF Admin, activate client variables and point it at the datasource... DO NOT let it use the registry to store client vars under any circumstance. The things that

Re: Replicate cache across multiple CF servers

2014-07-18 Thread Russ Michaels
god no don't use client variables. On Fri, Jul 18, 2014 at 3:24 PM, Scott Stewart webmas...@sstwebworks.com wrote: this sounds like a job for client variables. Set up a blank table in your DB, create a datasource for it in the CF Admin. While in the CF Admin, activate client variables

Re: Replicate cache across multiple CF servers

2014-07-17 Thread Russ Michaels
take a look at this http://ehcache.org/documentation/integrations/coldfusion On Thu, Jul 17, 2014 at 10:10 PM, Uday Patel udayjpatel2...@gmail.com wrote: Hi All, Need help with replicating cache across clustered CF8 servers. I have an application running on single server and i was

Re: Flushing cache

2012-11-07 Thread Claude Schnéegans
Is there anyway to ensure that a user starts with a new or fresh template that is loaded from the website and not from their computer's cache. It is supposed to be handled automatically by CF with appropriate HTTP headers.

Re: Flushing cache

2012-11-07 Thread Russ Michaels
The simple answer. Add the following HTML in between the HEAD and /HEAD tags of your page: meta http-equiv=Expires content=-1 the more complex answer is that not all browsers will take notice of this. You may need to add additional headers using the CFHEADER tag. cfheader name=Cache-Control

Re: Flushing cache

2012-11-07 Thread Pradeep Viswanathan Rajasekaran
Use a session variable/cookie and set the expiry and validate the same on form submission. On Nov 7, 2012 8:52 PM, Rob Voyle robvo...@voyle.com wrote: Hi Folks Is there anyway to ensure that a user starts with a new or fresh template that is loaded from the website and not from their

Re: Distributed Cache in Coldfusion 9 with Terracotta

2012-05-29 Thread Cameron Childress
I'd also give these blog posts a review if you haven't already. http://rob.brooks-bilson.com/index.cfm/Terracotta Specifically, there is a webinar link in there that (if the recording is available) might help you out a bit. -Cameron On Mon, May 28, 2012 at 9:44 PM, Rick Root

Re: Distributed Cache in Coldfusion 9 with Terracotta

2012-05-29 Thread Rick Root
I have not, but since CF is talking to a specific IP port for this, watch out for firewalls, etc. We are running Windows Firewall ... I did check, from a command prompt, if I could telnet to localhost 9510 ... and it allowed me in so I don't think the firewall was affecting it. However, just

Re: Distributed Cache in Coldfusion 9 with Terracotta

2012-05-29 Thread Rick Root
Perhaps the problem here is that I'm using a version of terracotta that is too modern for Coldfusion 901's version of ehcache. The jar file that I copied was ehcache-terracotta-2.5.2.jar but the two sites I found both mention use ehcache-terracotta-2.0.0.jar. I know Rob Brooks site

Re: Distributed Cache in Coldfusion 9 with Terracotta

2012-05-29 Thread Rick Root
In general, to get Java programs to run as services, you use one of the many Java service wrappers available. As you mention, there are many. Do you (or anyone else reading) have a recommendation for one that runs well on 64 bit Win2k8? I found several articles on starting terracotta

Re: Distributed Cache in Coldfusion 9 with Terracotta

2012-05-29 Thread Carl Von Stetten
Rick, Try this: http://li-ma.blogspot.com/2010/04/run-terracotta-server-as-windows.html HTH, -Carl ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: Distributed Cache in Coldfusion 9 with Terracotta

2012-05-28 Thread Rick Root
Also, if anyone has any tips on how to set up the terracotta server to start automatically when windows starts, that'd be appreciated! We are running 64 bit Windows Server 2008.. Coldfusion 9.0.1 64 bit Enterprise Multiserver configuration with 3 instances clustered running our web site. Rick

Re: Distributed Cache in Coldfusion 9 with Terracotta

2012-05-28 Thread Dave Watts
Also, if anyone has any tips on how to set up the terracotta server to start automatically when windows starts, that'd be appreciated! In general, to get Java programs to run as services, you use one of the many Java service wrappers available. Dave Watts, CTO, Fig Leaf Software

Re: Distributed Cache in Coldfusion 9 with Terracotta

2012-05-28 Thread Dave Watts
So, I am told that you can use ehcache in CF to work as a distributed cache if you install the open source terracotta server. I'm having trouble finding instructions on how to do this.  I found the following article on doing it:

Re: CF cache not updating

2008-08-08 Thread Tom Chiverton
On Friday 08 Aug 2008, jock mahon wrote: So put trusted cache and save class file back on. However after doing this the error came back. Does anyone have any ideas about this please thanks Stop the server, remove all the compiled cfclasses and start it again. Maybe it's just confused. -- Tom

Re: Preventing cache in IE with cfheader

2007-05-03 Thread Christophe Maso
Instead of messing with HTTP headers, just append a random variable to the image URL: img src=image.gif?638232 / Jochem Thanks! Works perfectly. The developer I work with points out that sometimes you might want the image cached unless it has been updated, and the solution to that is

Re: Preventing cache in IE with cfheader

2007-05-02 Thread Christophe Maso
I'm having trouble getting IE not to cache image files on a particular page. I have a page where image files can be uploaded and overwrite existing files (similar to a Myspace type page that displays your picture; you can upload another gif or jpg via form field, submit, and then page

Re: Preventing cache in IE with cfheader

2007-05-02 Thread Jochem van Dieten
Christophe Maso wrote: I'm having trouble getting IE not to cache image files on a particular page. I have a page where image files can be uploaded and overwrite existing files (similar to a Myspace type page that displays your picture; you can upload another gif or jpg via form field,

Re: Preventing cache in IE with cfheader

2007-05-02 Thread Casey Dougall
On 5/2/07, Jochem van Dieten [EMAIL PROTECTED] wrote: Instead of messing with HTTP headers, just append a random variable to the image URL: img src=image.gif?638232 / Jochem Yup... Same thing you gotta do with XML content in IE -- Casey

Re: To cache or not to cache...

2007-04-30 Thread Nathan Strutz
Mike, I guess it all depends (ymmv etc.), but I'll give you some tips. Query of queries are not really great if you're trying to speed things up. It's not the worst way to go, but if you make better original queries and minimize the number of QoQs, you'll do a bit better. Now the question is do

Re: To cache or not to cache...

2007-04-29 Thread Robertson-Ravo, Neil (RX)
A normal cache would be better I would say, probably less mem impact. How many rows are we talking about? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It

Re: To cache or not to cache...

2007-04-29 Thread Mike Little
hi neil, well potentially the client wants a large amount of property listings eg. 1000+ ?? at the moment, running one SP for each type of listing eg. feature, then doing a QofQ based on region seems to work ok - but i am dealing with very small amounts for development. our model is a site

Re: To cache or not to cache...

2007-04-29 Thread Cameron Childress
if the data doesn't change frequently, you may be better off just caching the assembled page. hard to know without knowing more about the business problem at hand. On 4/29/07, Mike Little [EMAIL PROTECTED] wrote: hi neil, well potentially the client wants a large amount of property listings

Re: To cache or not to cache...

2007-04-29 Thread James Holmes
With this many records it may actually work out that a properly indexed DB with wel-written queries performs better than QoQ on a stored/cached query. Compare both and see what happens. On 4/30/07, Mike Little wrote: well potentially the client wants a large amount of property listings eg.

Re: Template cache problem

2005-10-20 Thread James Holmes
Not having worked with CF7 yet I'm taking a stab in the dark but perhaps part of the event gateway CFC mechaism is cached indepentently of all the other settings you described, similar to the way Webservice CFC invokation stubs are cached (so changes to a webservice CFC cause errors until the

Re: Template cache problem

2005-10-20 Thread Michael Dinowitz
From what tests I've run on the Directory Watcher and Asynchronous gateway, each 'call' to the CFC used for these gateways invokes a new instance of the code and each invocation checks the template to see if it has been altered. Bottom line is that there is no auto-caching on CF 7.0 (the

Re: InterSystems Cache

2005-09-21 Thread Sergey Croitor
MD Just wondering if anyone is using this database and what they MD thought of it. Any specific issues to worry about? 'gatchas'? I was using the predecessor of Cache, the MUMPS, but it was 15 years ago :) It's the b-tree database, very fast when you retrieve the data of the node. In fact the

Re: InterSystems Cache

2005-09-21 Thread Sergey Croitor
Here is the discussion about the subject http://forums.devshed.com/archive/t-53895 -- Serg MD Just wondering if anyone is using this database and what they MD thought of it. Any specific issues to worry about? 'gatchas'? MD Thanks

Re: InterSystems Cache

2005-09-20 Thread Nathan Strutz
I worked with this one delphi programmer who swears by it and won't shut up... said it was great. I have no desire to try it, personally, but this dude was all over it. cache', rhymes kinda with today. -nathan strutz http://www.dopefly.com/ On 9/20/05, Michael Dinowitz [EMAIL PROTECTED] wrote:

Re: Trusted Cache

2005-05-04 Thread Dave Carabetta
On 5/4/05, Al Everett [EMAIL PROTECTED] wrote: Okay, my mind is apparently slipping. I understand that the Trusted Cache setting can give significant performance gains because CF is not checking for a newer version of CFML to compile for each page request. But let's say I have made CFML

Re: Trusted Cache

2005-05-04 Thread Al Everett
On 5/4/05, Dave Carabetta [EMAIL PROTECTED] wrote: 1) Turn off trusted cache 2) Copy out your files and run the new pages so CF compile them, etc. 3) Turn on trusted cache No need to restart your server at all in my experience. Sounds simple enough. I just know that there are circumstances

RE: Trusted Cache

2005-05-04 Thread Dave Watts
Sounds simple enough. I just know that there are circumstances where one or more templates that's been changed will be very rarely touched and will be hard to get to in normal testing. I guess I was hoping there was a way I could just clear the cache so CF will just treat all pages as new

RE: Trusted Cache

2005-05-04 Thread Connie DeCinko
You can delete the .class files but only while the service is stopped. Otherwise CF will barf looking for files it assumes are still there. -Original Message- From: Al Everett [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 04, 2005 12:35 PM To: CF-Talk Subject: Re: Trusted Cache

Re: Trusted Cache

2005-05-04 Thread Dave Carabetta
On 5/4/05, Al Everett [EMAIL PROTECTED] wrote: On 5/4/05, Dave Carabetta [EMAIL PROTECTED] wrote: 1) Turn off trusted cache 2) Copy out your files and run the new pages so CF compile them, etc. 3) Turn on trusted cache No need to restart your server at all in my experience. Sounds

Re: No cache meta tags not working

2005-03-17 Thread Protoculture
I've not found a sure fire way to do this yet. I've got the following meta tags in the header of my doc to Have you tried using CFHEADER tags instead? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at

RE: No cache meta tags not working

2005-03-17 Thread Dawson, Michael
Message- From: Protoculture [mailto:[EMAIL PROTECTED] Sent: Thursday, March 17, 2005 2:16 AM To: CF-Talk Subject: Re: No cache meta tags not working I've not found a sure fire way to do this yet. ~| Logware (www.logware.us

RE: No cache meta tags not working

2005-03-16 Thread Dave Watts
I've got the following meta tags in the header of my doc to prevent the page from caching, but the page is still being cached (IE 6 and Firefox tested): meta HTTP-EQUIV=pragma CONTENT=no-cache meta HTTP-EQUIV=cache-control CONTENT=no-cache meta HTTP-EQUIV=expires CONTENT=0 I'm

Re: Temporary Cache

2004-12-23 Thread Chris Jensen
Here's what I'd do... (this is untested, uncompiled pseudocode to describe the idea). Make a java.lang.ref.WeakRerence and store that in global application scope, so it Doesn't count as something keeping the cfc around. Use Strong references in sessions, since they get cleaned up

RE: Temporary Cache

2004-12-22 Thread Katz, Dov B (IT)
Here's a quick and dirty way to do this, and it should work without too much extra coding in CF, and relies on java garbage collection. Lets' say you have an instance of your object called SINGLEOBJ. Assuming originally you probably have cfset application.SINGLEOBJ=#someInstanceOfCFC# Then

RE: Safari cache issue

2004-08-26 Thread Gaulin, Mark
Try adding this header (which is a real header, not a meta-equiv header) cfheader name=Cache-Control value=no-cache Mark -Original Message- From: Andrzej Michalski [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 9:06 AM To: CF-Talk Subject: Safari cache issue We have a

Re: Safari cache issue

2004-08-26 Thread Andrzej Michalski
Mark, you're a star! This works perfectly... Try adding this header (which is a real header, not a meta-equiv header) cfheader name=Cache-Control value=no-cache Mark -Original Message- From: Andrzej Michalski [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004

Re: Safari cache issue

2004-08-26 Thread Dick Applebaum
Got a URL? I use routinely use frame like this on Safari without problems Dick On Aug 26, 2004, at 6:06 AM, Andrzej Michalski wrote: We have a CFMX application which employs a frameset. A main frame for the site and a sub frame which acts like a shopping basket. The idea is that the

RE: Trusted cache and updated templates

2004-07-20 Thread Bert Dawson
One way which might assist automating this would be to use the RunTimeService of the CF serviceFactory: 1. Use cfdirectory to get list of updated templates. 2. factory.runtimeservice.SetTrustedCache(false); 3. loop though updated templates, including each one inside a cftry/catch to ignore errors

RE: Trusted cache and updated templates

2004-07-19 Thread Dave Watts
If Trusted Cache is enabled in CF Admin, how do we get updated templates to process using the new version instead of the cached version? Is there a way to 'pop' the old version from the cache? Thanks! Yes. Disable trusted cache, run the files in question, then reenable trusted cache.

Re: Trusted cache and updated templates

2004-07-19 Thread george . earl
If Trusted Cache is enabled in CF Admin, how do we get updated templates to process using the new version instead of the cached version? Is there a way to 'pop' the old version from the cache? Thanks! Yes. Disable trusted cache, run the files in question, then reenable trusted cache.

RE: Trusted Cache

2004-06-11 Thread Tony Weeg
sure am. great.pages load, REALLY fast, I think, at least they seem to, maybe its placebonic, but it seems as though its making speed faster. tw -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Friday, June 11, 2004 12:11 PM To: CF-Talk Subject:

RE: Trusted Cache

2004-06-11 Thread Mark W. Breneman
Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, June 11, 2004 11:27 AM To: CF-Talk Subject: RE: Trusted Cache sure am. great.pages load, REALLY fast, I think, at least they seem to, maybe its placebonic, but it seems as though its making speed faster. tw -Original Message- From

Re: Trusted Cache

2004-06-11 Thread Philip Arnold
On Fri, 11 Jun 2004 17:11:07 +0100, Robertson-Ravo, Neil (RX) wrote: Anyone currently using Trusted Cache?Good/Bad? In my old company (you know who they are), we used Trusted Cache on the servers, and had an app which uploaded and touched the cache to refresh the template But the servers were

RE: Page Cache..

2004-02-09 Thread Hassan Arteaga Rodriguez
Thanks Jeremy..good idea to open the wizard in another window Regards __ MSc. Hassan Arteaga Rodrguez Microsoft Certified System Engineer. DIGI- Grupo de Desarrollo COPEXTEL, S.A. _ From: Jeremy Brodie [mailto:[EMAIL PROTECTED] Sent: Monday, February 09, 2004 10:33 AM To: CF-Talk

RE: Page Cache..

2004-02-09 Thread Mosh Teitelbaum
Jeremy Brodie wrote: Caution: There is no true way of completely diabling the back button ... Having read the caution, I should still point out that the user can always go back via Alt + Left Arrow. Also, you should carefully consider disabling the back button.It tends to be a user-interface

Re: Page Cache..

2004-02-09 Thread Tyler Clendenin
Arteaga Rodriguez To: CF-Talk Sent: Monday, February 09, 2004 11:46 AM Subject: RE: Page Cache.. Thanks Jeremy..good idea to open the wizard in another window Regards __ MSc. Hassan Arteaga Rodrguez Microsoft Certified System Engineer. DIGI- Grupo de Desarrollo COPEXTEL, S.A. _ From

RE: Page Cache..

2004-02-09 Thread Shawn Grover
Another idea would be to put the three pages in your form onto one page as hidden divs (except the first - that one should be visible).Then provide a way to move between the pages (next/back links that would hide/show the appropriate divs).And a Finish link/button that submitts the form. Doing

RE: Trusted cache?

2003-06-06 Thread Kola Oyedeji
Philip I think he was using CF5 and AFAIK you no longer have to stop and start the server, just uncheck the setting in the administrator! Kola -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: 05 June 2003 13:08 To: CF-Talk Subject: RE: Trusted cache

RE: Trusted cache?

2003-06-06 Thread Chris Norloff
I tried an undocumented function to reload cached files but it didn't work for me (CF 4.5 SP2, Solaris 8) I *have* sneaked files into the Trusted Cache when we needed to on Production. Turn off the Trusted Cache in the CFadmin, then make a browser request to the new .cfm file. Then turn the

RE: Trusted cache?

2003-06-06 Thread Philip Arnold
I think he was using CF5 and AFAIK you no longer have to stop and start the server, just uncheck the setting in the administrator! This is what I was saying... BUT, if you regularly upload files to multple servers, save time, it's easier to write a procedure to upload and push the file out of

RE: Trusted cache?

2003-06-06 Thread DURETTE, STEVEN J (AIT)
about the trusted cache? All I can find are short descriptions with no details. Thanks, Steve -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2003 10:27 AM To: CF-Talk Subject: RE: Trusted cache? I think he was using CF5 and AFAIK you no longer

RE: Trusted cache?

2003-06-06 Thread Kola Oyedeji
-Original Message- From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED] Sent: 05 June 2003 18:18 To: CF-Talk Subject: RE: Trusted cache? Philip, Do you know where I could find more information about this? I have been tasked with determining if we want to turn this on in our

RE: Trusted cache?

2003-06-05 Thread Philip Arnold
The docs are pretty thin on the Trusted cache option in CF5 Admin but I found a Tech Note in MM saying it should be anabled on Production Servers. Is this standard practice out there and, other than remembering to refresh when updating templates, are there any gotchas to be aware of? You

Re: Trusted cache?

2003-06-05 Thread Chris Norloff
Be sure to stop/start the CFserver when you change any .cfm file, and make the Trusted Cache big - like 5 or 10 times the total size of your .cfm files. It definitely helps response time on a Production server. Chris Norloff -- Original Message --

RE: CF Cache size

2002-06-11 Thread Philip Arnold - ASP
What's a good rough formula for setting the cache size in the CF administrator? We've got a server with 1 gig of RAM, but the cache is only set to 2048 kb Don't forget that the cache is only used when it needs to be, so you could set it to 512Mb, and CF would just keep on expanding the

RE: CF Cache size

2002-06-11 Thread Dave Watts
What's a good rough formula for setting the cache size in the CF administrator? We've got a server with 1 gig of RAM, but the cache is only set to 2048 kb In CF 5, the typical best practices recommendation is to find the total file size of all .cfm files you want to cache

RE: CF Cache size

2002-06-10 Thread Dave Watts
What's a good rough formula for setting the cache size in the CF administrator? We've got a server with 1 gig of RAM, but the cache is only set to 2048 kb In CF 5, the typical best practices recommendation is to find the total file size of all .cfm files you want to cache (typically,

RE: CF Cache size

2002-06-10 Thread Matt Liotta
The answer is just a command-line away. find /opt/coldfusionmx/wwwroot -name *.cf | wc -l -Matt -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 4:02 PM To: CF-Talk Subject: RE: CF Cache size What's a good rough formula

RE: CF Cache size

2002-06-10 Thread Stacy Young
P.S. We've seen big gains with Trusted Cache turned in production. Much more than previous versions. SY -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 7:26 PM To: CF-Talk Subject: RE: CF Cache size The answer is just a command-line away

Re: Un cache all queries or some queries

2002-01-18 Thread Troy Simpson
I also want to ask, how can I flush the templates from memory without restarting the CF Server. I want to alter one page on the production server without having to stop and restart the CF Server. Thanks, Troy Troy Simpson wrote: How could I remove some or all cached queries without restarting

RE: Un cache all queries or some queries

2002-01-18 Thread Dave Watts
I also want to ask, how can I flush the templates from memory without restarting the CF Server. I want to alter one page on the production server without having to stop and restart the CF Server. If you're referring to Trusted Cache, simply turn it off, run the changed file, then turn it

Re: Un cache all queries or some queries

2002-01-18 Thread Michiel Boland
I also want to ask, how can I flush the templates from memory without restarting the CF Server. I want to alter one page on the production server without having to stop and restart the CF Server. AFAIK there is no way to flush either the query or the code cache. If you have CF5 you can turn

RE: Un cache all queries or some queries

2002-01-18 Thread Tim Stadinski
PROTECTED]] Sent: Friday, January 18, 2002 11:00 AM To: CF-Talk Subject: Re: Un cache all queries or some queries I also want to ask, how can I flush the templates from memory without restarting the CF Server. I want to alter one page on the production server without having to stop and restart

RE: Un cache all queries or some queries

2002-01-18 Thread Dave Watts
How could I remove some or all cached queries without restarting the CF Server. There are two ways you can do this. One is to use the CFOBJECTCACHE tag: cfobjectcache action=clear This will clear all cached queries from memory. Another is to specify a timespan of zero in a specific query's

Re: Un cache all queries or some queries

2002-01-18 Thread ksuh
Set your cachedwithin value to zero (zero time, that is) in your query. That'll clear it. - Original Message - From: Troy Simpson [EMAIL PROTECTED] Date: Friday, January 18, 2002 8:43 am Subject: Un cache all queries or some queries How could I remove some or all cached queries

RE: Un cache all queries or some queries

2002-01-18 Thread Tim Stadinski
Watts [mailto:[EMAIL PROTECTED]] Sent: Friday, January 18, 2002 11:23 AM To: CF-Talk Subject: RE: Un cache all queries or some queries How could I remove some or all cached queries without restarting the CF Server. There are two ways you can do this. One is to use the CFOBJECTCACHE tag

RE: Un cache all queries or some queries

2002-01-18 Thread Dave Watts
is there a way to specifiy which query to uncache? this seems to work for all queries, but it would be nice to make this work for only a specified query. Unfortunately, you have very little control over this stuff. The CFOBJECTCACHE tag only allows you to delete all the cached queries.

RE: Un cache all queries or some queries

2002-01-18 Thread Stuart Miller
by adding ClearQueryCache=1 in the URL. Stuart Miller Rocom New Media +44 (0)1937 847492 http://www.dxtec.net http://www.rocom.co.uk -Original Message- From: Tim Stadinski [mailto:[EMAIL PROTECTED]] Sent: 18 January 2002 16:44 To: CF-Talk Subject: RE: Un cache all queries or some

Re: No cache or page refresh

2001-11-20 Thread Douglas L. Brown
The best way to handle it is through meta data HTML HEAD META HTTP-EQUIV=Pragma CONTENT=no-cache META HTTP-EQUIV=Expires CONTENT=-1 /HEAD BODY /BODY /HTML - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, November 20, 2001 12:18 PM Subject: No

RE: no-cache

2001-03-20 Thread Kevin Gilchrist
Changed it and it didn't seem to make a difference -Original Message- From: Savan Thongvanh [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 20, 2001 11:34 AM To: CF-Talk Subject: no-cache woopsie, http-equiv="pragma" content="no-cache"

RE: no-cache

2001-03-20 Thread Joe Sheble aka Wizaerd
I use CFHEADER name="Expires" VALUE="0" has worked for me so far... At 11:55 AM 3/20/01 -0500, Kevin Gilchrist wrote: Changed it and it didn't seem to make a difference -Original Message- From: Savan Thongvanh [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 20, 2001 11:34 AM To:

RE: no-cache

2001-03-20 Thread Kevin Gilchrist
OK, tried that, this is just developing on my own box so no proxy involved either -Original Message- From: Joe Sheble aka Wizaerd [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 20, 2001 12:25 PM To: CF-Talk Subject: RE: no-cache I use CFHEADER name="Expires" VALUE="

RE: AOL Cache servers bringing down server?

2001-02-21 Thread lsellers
3) So why are these connections hanging around? Well this part of my knowledge is a bit shaky. Basically clients enter the TIME_WAIT state after and active connection closes. I guess it is time to stand on the shoulders of others ... MS knowledge base article Q137984 has the following

RE: AOL Cache servers bringing down server?

2001-02-21 Thread Steve Bernard
but, it gets the job done. Steve -Original Message- From: lsellers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 21, 2001 5:40 PM To: CF-Talk Subject: RE: AOL Cache servers bringing down server? 3) So why are these connections hanging around? Well this part of my knowledge is a bit

Re: AOL Cache servers bringing down server?

2001-02-21 Thread Jon Hall
Thank you for the sanity check. We figured out it was a colocated customer of our who turned on multicast to cluster his servers. jon - Original Message - From: "Eric Barr" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, February 21, 2001 2:26 PM Subject: OT: AOL Cache

Re: Browsers cache

2000-12-14 Thread Michael Thomas
You could try cfobjectcache action="clear" but no promises. ~Mike From: Dian Oktosoma [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Browsers cache Date: Fri, 15 Dec 2000 09:05:22 +0700 I create a page to view database rows, then I create a button to

RE: Trusted Cache

2000-08-28 Thread Dave Watts
I am curios as to what has been implemented by you for solutions to resetting TRUSTED CACHE after you push code to a particular web server. It seems that we always have to restart the Cold Fusion Service. Has anyone created a NT Command file to stop restart the CF Service that I

RE: Picture Cache

2000-07-18 Thread Al Musella, DPM
The problem with this approach is you lose the ability for search engines to index the content of your pages.. most won't go into a frameset, because if they index a page in a frame, they have no way of loading the frameset then inserting the desired file into that frame. Frames have their

RE: Picture Cache

2000-07-17 Thread Sean Daniels
I know this is simple and OT but, is there another way to pre-load my mouse-over images without setting a JavaScript array? One trick I've used in the past was to load the images in a hidden frame. Create a frameset with cols="100%,*" and use the * frame to load a document that contains the

RE: Query Cache Limit Question

2000-06-01 Thread Ken Wilson
Finally, I'd like to point out that many kinds of "what if" questions, commonly asked on the list, are best answered with five minutes of testing. Perhaps Allaire could also take this approach when writing their docs? :) From the current v4.5.1 Online Docs regarding Cache Settings in CF

RE: Query Cache Limit Question

2000-06-01 Thread Dave Watts
Finally, I'd like to point out that many kinds of "what if" questions, commonly asked on the list, are best answered with five minutes of testing. Perhaps Allaire could also take this approach when writing their docs? :) From the current v4.5.1 Online Docs regarding Cache Settings in

Re: Query Cache Limit Question

2000-05-31 Thread Andy Peterson
Is there any way around the 100 query caching limit? For a big site, this sounds rather, er, limiting. Thanks in advance, Andy - Original Message - From: Emily B. Kim [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 20, 2000 11:57 AM Subject: Re: Query Cache Question

RE: Query Cache Limit Question

2000-05-31 Thread Dave Watts
Is the cached query limit on a per server basis or per application basis? i believe it is 100 queries per server. -emily Is there any way around the 100 query caching limit? For a big site, this sounds rather, er, limiting. Actually, it seems that there isn't a limit at 100 queries

RE: Query Cache Question

2000-04-20 Thread Pete Freitag
This is a good example of a query not to cache this way, let me explain why... Your idea with the dynamic query name shows that you have an idea why this might not work. It will cache the query in memory with the value that you first executed it with. Keep in mind that cold fusion can only have

RE: Query Cache Question

2000-04-20 Thread Adrian Wright
Is the cached query limit on a per server basis or per application basis? -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 20, 2000 1:32 AM To: [EMAIL PROTECTED] Subject: RE: Query Cache Question This is a good example of a query not to cache

Re: Query Cache Question

2000-04-20 Thread Emily B. Kim
Is the cached query limit on a per server basis or per application basis? i believe it is 100 queries per server. -emily -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit