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

PHP Pthreads - usando mysqli

Il problema è che l'oggetto mysqli non è adatto per l'uso in più thread, vuoi creare un'istanza di MySQLi per ogni thread che avvii, quindi ogni thread ha una connessione univoca.

<?php
define("SQLHOST", "localhost");
define("SQLUSER", "root");
define("SQLPASS", "");
define("SQLDB",   "test");
define("SQLPORT", 3306);
define("SQLSOCK", "/var/lib/mysql/mysql.sock");

class Mine extends Thread {
    public function run() {
        try {
            $my = new mysqli(SQLHOST, SQLUSER, SQLPASS, SQLDB, SQLPORT, SQLSOCK);
            if ($my) {
                $result = $my->query("SHOW DATABASES;");

                if (is_object($result)) {
                    while (($row = $result->fetch_assoc())) {
                        var_dump($row);
                    }
                }
            }
        } catch(Exception $ex) {
            var_dump($ex);
        }
    }
}

$mine = new Mine();
$mine->start();
?>

Rendimenti

array(1) {
  ["Database"]=>
  string(18) "information_schema"
}
array(1) {
  ["Database"]=>
  string(5) "mysql"
}
array(1) {
  ["Database"]=>
  string(18) "performance_schema"
}
array(1) {
  ["Database"]=>
  string(4) "test"
}

Nota che l'oggetto MySQLi non viene mai archiviato nell'ambito dell'oggetto Threads, perché dovresti memorizzare nell'ambito dell'oggetto solo ciò che intendi condividere e poiché non puoi condividere una connessione MySQLi, è meglio manipolarlo nell'ambito del metodo .

Ci sono molti esempi su github, incluso un esempio di SQLWorker, dovresti leggerli tutti.

Ulteriori letture:https://gist.github.com/krakjoe/6437782