|
wincache_lockAcquires an exclusive lock on a given key Description
bool wincache_lock(string
$key , bool $isglobal = false )Obtains an exclusive lock on a given key. The execution of the current script will be blocked until the lock can be obtained. Once the lock is obtained, the other scripts that try to request the lock by using the same key will be blocked, until the current script releases the lock by using wincache_unlock. Warning
Using of the wincache_lock and wincache_unlock can cause deadlocks when executing PHP scripts in a multi-process environment like FastCGI. Do not use these functions unless you are absolutely sure you need to use them. For the majority of the operations on the user cache it is not necessary to use these functions. Parameters
Return Values
Returns Examples
Example #1 Using wincache_lock
See Also
|