首页
下载
文档
问答社区
视频
捐赠
源代码
AI 助理
赞助商
CRMEB
Apipost
腾讯云
微擎
禅道
51Talk
商业产品
Swoole AI 智能文档翻译器
Swoole-Compiler PHP 代码加密器
CRMEB 新零售社交电商系统
登录
注册
全部
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
发表新帖
为什么连接池只创建一个连接
### 问题描述 用官网文档连接池示例代码,默认是创建64个链接,但是执行的过程中,我打开mysql,执行show full processlist;只看到一个mysql连接,请问这是什么原因 ### Swoole版本,PHP版本,以及操作系统版本信息 Swoole => 4.8.5 PHP => 8.1.7 系统 => Ubuntu 20.04.4 LTS ### 相关代码 ```php declare(strict_types=1); use Swoole\Coroutine; use Swoole\Database\PDOConfig; use Swoole\Database\PDOPool; use Swoole\Runtime; const N = 1024; Runtime::enableCoroutine(); $s = microtime(true); Coroutine\run(function () { $pool = new PDOPool((new PDOConfig) ->withHost('192.168.100.127') ->withPort(3306) //->withUnixSocket('/tmp/mysql.sock') ->withDbName('ems') ->withCharset('utf8') ->withUsername('root') ->withPassword('root') ); for ($n = N; $n--;) { Coroutine::create(function () use ($pool) { $pdo = $pool->get(); $statement = $pdo->prepare('select * from energystorageunit'); if (!$statement) { throw new RuntimeException('Prepare failed'); } $a = mt_rand(1, 100); $b = mt_rand(1, 100); $result = $statement->execute(); if (!$result) { throw new RuntimeException('Execute failed'); } $result = $statement->fetchAll(); var_dump($result); $pool->put($pdo); }); } while (true){ } }); $s = microtime(true) - $s; echo 'Use ' . $s . 's for ' . N . ' queries' . PHP_EOL; ``` ### 你期待的结果是什么?实际看到的错误信息又是什么? 期待的结果 show full processlist;有64个mysql连接 实际看到 show full processlist;只生成了一个mysql连接
发布于2年前 · 17 次浏览 · 来自
提问
十二月
### 问题描述 用官网文档连接池示例代码,默认是创建64个链接,但是执行的过程中,我打开mysql,执行show full processlist;只看到一个mysql连接,请问这是什么原因 ### Swoole版本,PHP版本,以及操作系统版本信息 Swoole => 4.8.5 PHP => 8.1.7 系统 => Ubuntu 20.04.4 LTS ### 相关代码 ```php declare(strict_types=1); use Swoole\Coroutine; use Swoole\Database\PDOConfig; use Swoole\Database\PDOPool; use Swoole\Runtime; const N = 1024; Runtime::enableCoroutine(); $s = microtime(true); Coroutine\run(function () { $pool = new PDOPool((new PDOConfig) ->withHost('192.168.100.127') ->withPort(3306) //->withUnixSocket('/tmp/mysql.sock') ->withDbName('ems') ->withCharset('utf8') ->withUsername('root') ->withPassword('root') ); for ($n = N; $n--;) { Coroutine::create(function () use ($pool) { $pdo = $pool->get(); $statement = $pdo->prepare('select * from energystorageunit'); if (!$statement) { throw new RuntimeException('Prepare failed'); } $a = mt_rand(1, 100); $b = mt_rand(1, 100); $result = $statement->execute(); if (!$result) { throw new RuntimeException('Execute failed'); } $result = $statement->fetchAll(); var_dump($result); $pool->put($pdo); }); } while (true){ } }); $s = microtime(true) - $s; echo 'Use ' . $s . 's for ' . N . ' queries' . PHP_EOL; ``` ### 你期待的结果是什么?实际看到的错误信息又是什么? 期待的结果 show full processlist;有64个mysql连接 实际看到 show full processlist;只生成了一个mysql连接
赞
0
分享
收藏
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
评论
2022-07-20
Rango
连接池的实现是在发生实际的请求是才会真正去创建连接。可以看源码。
赞
0
回复
微信公众号
热门内容
暂无回复的问答
- CodeGalaxy K3s 轻量集群节点之间如何实现负载均衡
- 关于openssl CURL WARNING swSSL_connect: SSL_connect(fd=69) failed. Error: error:141A318A:SSL routines:tls_process_ske_dhe:dh key too small[1|394]
- 多个模型如何进行事务异常回退?
- websocket开启wss报错
- 协程tcp服务器如何使用多进程?recv()方法接收信息,打印出来的pid一直是同一个。没用使用到多进程啊。