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

Interrompi la query tramite pdo

Il problema principale qui è condividere il PID tra la tua richiesta asincrona che genera il rapporto e lo script che dovrebbe interromperlo.

Puoi ottenere il tuo PID utilizzando:

    $stmt = $dbh->prepare("SELECT CONNECTION_ID()");
    $stmt->execute();
    $pid = $stmt->fetchColumn();

E puoi usare qualcosa come php-shared-memory per creare una variabile condivisa tra i tuoi script. Se non stai utilizzando Composer per le dipendenze del tuo progetto, questa libreria ha una versione standalone (1.5.0, qui ).

Esempio di implementazione:

<?php

if (!include __DIR__ . '/vendor/autoload.php')
{
    die('You must set up the project dependencies.');
}

use Fuz\Component\SharedMemory\SharedMemory;
use Fuz\Component\SharedMemory\Storage\StorageFile;

// your intializations here

$storage = new StorageFile("/tmp/shared.{$user_id}.sync");
$shared = new SharedMemory($storage);

if (!isset($_POST['cancel_request']))
{
    $stmt = $dbh->prepare("SELECT CONNECTION_ID()");
    $stmt->execute();
    $pid = $stmt->fetchColumn();

    $shared->pid = $pid;

    // your long query here

    $shared->destroyStorage();
}
else
{
    // kills pid
    $pid = $shared->pid;
    if (!is_null($pid))
    {
        $dbh->exec("KILL {$pid}");
    }
}