Ask a Question related to Coldfusion - Getting Started, Design and Development.
-
Hal B. Helms #1
Re: cflock timeout
The timeout property sets the amount of time a session variable will be active. Note that while you can make it shorter than the default timeout set in the CF Administrator, you cannot make it longer.
Hal B. Helms Guest
-
#40750 [NEW]: fsockopen timeout parameter overwrites timeout for reading
From: andreas dot rieber at 2e-systems dot com Operating system: OpenSuse PHP version: 5.2.1 PHP Bug Type: Network related... -
cfquery, timeout attribute and cfserver timeout setting
On our server, CFMX 6.1, we have an option setting for timeout requests as120 seconds. Then in my query, I tried replacing the timeout setting to... -
WebService ignoring timeout properties? (Server was unable to process request. --> Timeout exired)
Hi! I have a webservice serving the latest orders from a webshop. The customer uses a forms app client to fetch these orders and push them into... -
Timeout sometimes runs past the timeout length
I'm using Director MX on Windows XP. I have created a programme that launches a dir in a movie window. I am using the timeout set of commands to... -
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
Gary Why not just change the connection timeout property? Your doing an update statement, which could take various amounts of time depending on... -
BKBK #2
Re: cflock timeout
A session lock and its attributes apply to each individual session
on its own, without any direct inter-session interactions.
When the processing flow for a session reaches a session lock,
the timeout is the maximum number of seconds that it may
wait to obtain the lock. That is, how long it may wait to get
the okay-flag to run the code within the cflock tag. If the
lock is obtained within the timeout period, execution continues
normally.
If the lock is not obtained within the timeout period, further
code execution depends on whether the ThrowOnTimeout
attribute is set to "Yes" or "No". If "Yes", Coldfusion throws
an error and code execution stops. If "No", the processing
flow continues beyond the cflock tag, without executing the
code within the tag.
Coldfusion's behaviour is a bit peculiarity, when you set the
timeout value to "0". Then the timeout value actually defaults
to the value T, where T comes from the "Timeout Requests after T"
setting in the ColdFusion Administrator. This assumes that that
setting is enabled. If it is not, and you set timeout="0" in a
cflock tag, ColdFusion might wait for an indefinite amount of
time to obtain the lock.
BKBK Guest



Reply With Quote

