编程语言
首页 > 编程语言> > php – 使用PdoSessionHandler锁定等待超时Symfony2棘轮

php – 使用PdoSessionHandler锁定等待超时Symfony2棘轮

作者:互联网

我使用PdoSessionHandler将用户的会话存储在数据库中,以使用会话Symfony2服务器和Ratchet服务器进行通信.

它连接OK,发送消息OK,但是当我在Symfony2应用程序中切换到其他页面或关闭会话时,它会调用onClose函数.然后应用程序被阻止并返回以下错误:

SQLSTATE[HY000]: General error: 1205 Lock wait timeout exceeded; try restarting transaction 500 Internal Server Error – PDOException

服务器看起来像:

$pdo = new PDO('mysql:host=localhost;dbname=XXXX', 'root', null);
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$dbOptions = array(
    'db_table' => 'sessions',
    'db_id_col' => 'sess_id',
    'db_data_col' => 'sess_data',
    'db_time_col' => 'sess_time',
    'db_lifetime_col' => 'sess_lifetime',);

$session = new PdoSessionHandler($pdo, $dbOptions);
$myApp = new ServerSocket();

$loop = \React\EventLoop\Factory::create();
$server = new \React\Socket\Server($loop);
$server->listen(8080, '0.0.0.0');

new IoServer(new HttpServer(new WsServer(new SessionProvider($myApp,$session))), $server);
echo "server running \n";
$loop->run();

“MyApp”看起来像:

class ServerSocket implements MessageComponentInterface {

protected $players;
private $users;

public function __construct()
{
    $this->players = [];
    $this->users = new \SplObjectStorage();
}

function onOpen(ConnectionInterface $conn)
{
    $this->users->attach($conn);
    $this->players[$conn->Session->get('current_user_id')] = $conn;
    print("new conection (". $conn->Session->get('current_user_id').")");
}

function onClose(ConnectionInterface $conn)
{
    $this->users->detach($conn);
    unset($this->players[$conn->Session->get('current_user_id')]);
    $conn->close();
}

   function onMessage(ConnectionInterface $from, $msg)
{
    $data = json_decode($msg);
    $to = $data->command;
    if (isset($this->players[$to])) {
        $this->players[$to]->send($data->message);
        echo $data->message;
    }
 }
}

Twig页面的脚本是:

 var conn = new WebSocket('ws://localhost:8080');
    conn.onopen = function(e) {
        alert("Connection established!");
    };

    conn.onmessage = function(e) {
        alert(e.data);
    };

    function sendMessage(msg,user) {
        conn.send(JSON.stringify({command: user, message: msg}));
    };


    sendMessage("test",2);

我该怎么做才能避免锁定?

解决方法:

根据Symfony 2 blocked concurrency,禁用会话锁定已解决了我的问题.

在你的情况下,你应该尝试:

$dbOptions = array(
    'db_table'        => 'sessions',
    'db_id_col'       => 'sess_id',
    'db_data_col'     => 'sess_data',
    'db_time_col'     => 'sess_time',
    'db_lifetime_col' => 'sess_lifetime',
    'lock_mode'       => 0
);

标签:php,symfony,ratchet
来源: https://codeday.me/bug/20190702/1357814.html