常见问题
Swoole 短名未关闭
[ERROR] Swoole short name have to disable before start server, please set swoole.use_shortname = 'Off' into your php.ini.
您需要在您的 php.ini 配置文件增加 swoole.use_shortname = 'Off'
配置项
如果您使用的是 1.0.x 版本,这也可能是因为你按以下的方式设置了
// 在 1.0 系列版本下
// 这些都是错误的,注意 `大小写` 和 `引号`
swoole.use_shortname = 'off'
swoole.use_shortname = off
swoole.use_shortname = Off
// 下面的才是正确的
swoole.use_shortname = 'Off'
注意该配置必须于 php.ini 内配置,无法通过 ini_set() 函数来重写
当然,也可以通过以下的命令来启动服务,在执行 PHP 命令时关闭掉 Swoole 短名功能
php -d swoole.use_shortname=Off bin/hyperf.php start
代理类缓存
代理类缓存一旦生成,将不会再重新覆盖。所以当你修改了已经生成代理类的文件时,需要手动清理。
代理类位置如下
runtime/container/proxy/
重新生成缓存命令,新缓存会覆盖原目录
vendor/bin/init-proxy.sh
删除代理类缓存
rm -rf ./runtime/container/proxy
所以单测命令可以使用以下代替:
vendor/bin/init-proxy.sh && composer test
同理,启动命令可以使用以下代替
vendor/bin/init-proxy.sh && php bin/hyperf.php start
异步队列消息丢失
如果在使用 async-queue
组件时,发现 handle
中的方法没有执行,请先检查以下几种情况:
Redis
是否与其他人共用,消息被其他人消费走- 本地进程是否存在残余,被其他进程消费掉
以下提供万无一失的解决办法:
- killall php
- 修改
async-queue
配置channel
1.1.24 - 1.1.26 版本 SymfonyEventDispatcher 报错
因为 symfony/console
默认使用的 ^4.2
版本,而 symfony/event-dispatcher
的 ^4.3
版本与 <4.3
版本不兼容。
hyperf/framework
默认推荐使用 ^4.3
版本的 symfony/event-dispatcher
,就有一定概率导致实现上的冲突。
如果有类似的情况出现,可以尝试以下操作
rm -rf vendor
rm -rf composer.lock
composer require "symfony/event-dispatcher:^4.3"
1.1.27 版本中,会在 composer.json
中添加以下配置,来处理这个问题。
"conflict": {
"symfony/event-dispatcher": "<4.3"
},
使用 AMQP 组件报 Swoole\Error: API must be called in the coroutine
错误
可以在 config/autoload/amqp.php
配置文件中将 close_on_destruct
改为 false
即可。