Mysql
 sql >> Database >  >> RDS >> Mysql

Acquire_lock() non funziona. Il bot continua a inviare richieste rapidamente. PHP + AJAX

function acquire_lock($name) { 
    $file = fopen($name, "rw"); 
    flock($file, LOCK_EX);
    return $file;
} 
function release_lock($file) { 
    flock($file, LOCK_UN);
    fclose($file); 
}

Il vero blocco non è aprire o chiudere il file, bur il flock funzione.