企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# MysqlAsynPool 异步mysql连接池 ## 普通用法 示例: ```php /** * mysql 测试 * @throws \Server\CoreBase\SwooleException */ public function mysql_test() { $this->mysql_pool->dbQueryBuilder->select('*')->from('account')->where('sex', 1); $this->mysql_pool->query(function ($result) { print_r($result); }); $this->destroy(); } ``` 其中dbQueryBuilder对应的是Miner,关于用法参考[Miner](https://github.com/jstayton/Miner) 参考类ServerMysqlTest.php,可以在test文件夹中找到。 ## 协程事务 非协程版事务相对复杂不建议使用。 ```php /** * mysql 事务协程测试 */ public function http_mysql_begin_coroutine_test() { $id = yield $this->mysql_pool->coroutineBegin($this); $update_result = yield $this->mysql_pool->dbQueryBuilder->update('user_info') ->set('sex', '0') ->where('uid', 36) ->coroutineSend($id); $result = yield $this->mysql_pool->dbQueryBuilder->select('*') ->from('user_info') ->where('uid', 36) ->coroutineSend($id); if ($result['result'][0]['channel'] == 888) { $this->http_output->end('commit'); yield $this->mysql_pool->coroutineCommit($id); } else { $this->http_output->end('rollback'); yield $this->mysql_pool->coroutineRollback($id); } } ``` ## 协程模式 示例: ```php $mySqlCoroutine = $this->mysql_pool->dbQueryBuilder->select('*') ->from('account') ->where('uid', 10303) ->coroutineSend(); $mysql_result = yield $mySqlCoroutine; $redisCoroutine = $this->redis_pool->coroutineSend('get', 'test'); $redis_result = yield $redisCoroutine; ``` 使用协程会大大简化代码的书写,提高代码的可读性。 上面的代码通过yield关键字返回了异步回调的值。 执行顺序 mysql\_send->mysql\_rev->redis\_send->redis\_rev; ```php $mySqlCoroutine = $this->mysql_pool->dbQueryBuilder->select('*') ->from('account') ->where('uid', 10303) ->coroutineSend(); $redisCoroutine = $this->redis_pool->coroutineSend('get', 'test'); $mysql_result = yield $mySqlCoroutine; $redis_result = yield $redisCoroutine; ``` 执行顺序 mysql\_send->redis\_send->mysql\_rev->redis\_rev; ## 获取mysql语句 ```php $value = $this->mysql_pool->dbQueryBuilder ->insertInto('account') ->intoColumns(['uid', 'static']) ->intoValues([[36, 0], [37, 0]]) ->getStatement(true); ```