sql >> Database >  >> RDS >> Mysql

Transactieprioriteit?

Ik zou proberen Keep It Simple S....., en een eenvoudig bestandsvergrendelingsproces zoals dit gebruiken bovenaan je bestaande cron-script.

$fp = fopen("/tmp/my_cron_lock.txt", "r+");

if ( ! flock($fp, LOCK_EX)) {
    // other cron is overrunning so
    // I'll get restarted in 3 mins 
    // so I will let other job finish

    fclose($fp);

    exit;
}

// existing script



// free the lock, 
// although this will happen automatically when script terminates

    fclose($fp);
?>


  1. Android:hoe een afbeelding in mysql te uploaden met php

  2. Inleiding tot PL/SQL VARRAY's in Oracle Database

  3. Hoe maak je een Postgresql JSONB-array in array-index?

  4. Fulltext match() tegen() retourneert lege set