sql >> データベース >  >> RDS >> Mysql

取引の優先順位は?

    私はそれをシンプルに保つことを試みます.....そしてあなたの既存のcronスクリプトの上部でこのような単純なファイルロックプロセスを使用します。

    $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. MySQL EntityFramework6でコンソールアプリを実行しようとしたときにConfigurationErrorExceptionが発生しました

    2. solrのデータはckanのpostgresに裏打ちされていますか

    3. CASEを使用して複数の列を選択するMySQLクエリ

    4. RをOracleに接続する方法は?