Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
quote:
Originally posted by: fober1
Hi,
I have not seen that specific behavior on clustered or single web-servers.
You did not write if you are using any cluster features of ColdFusion, but I assume you are using as stand-alone configured ColdFusion servers, and through LoadBalancer configuration (sticky cookie) you are making sure that users are always sent back to the same server.
I would not expect the problem you have to be caused by such a load balancer configuration, but companies who implement load balancers often also use Proxy-servers, and now well they can mess up a lot of things with caching.
(even Dan's problem could be caused by a proxy server: first request to verify if the requested page still has the same date, and then the request is actually sent to the server itself for execution).
A quick way to verify if a proxy is messing with you is to attach any URL parameter: "www.mysite.com/index.cfm" may be cached, but "www.mysite.com/index.cfm?user=12345" should not be served from the cache and instead get sent to an actual web-server to return a customized response.
Cheers,
fober