在 windows 10 下,php start.php start 后,文件修改不会 reloading,是 bug 吗?
windows只启动了httpserver的进程,文件监控进程及其他进程都没启动,linux是启动了的
能手动启动吗?怎么弄?
由于php在windows下不支持信号,所以暂时无法支持reload。
使用nodejs 的nodemon,参考 https://github.com/9raxdev/think-workerman
nodemon -w "D:\SITES\qq-group-message-forwarding\*" -i "D:\SITES\qq-group-message-forwarding\Forward\runtime\*" -e "php" -x "php D:\SITES\qq-group-message-forwarding\Forward\client_service\start_businessworker.php D:\SITES\qq-group-message-forwarding\Forward\client_service\start_gateway.php D:\SITES\qq-group-message-forwarding\Forward\client_service\start_global_data.php D:\SITES\qq-group-message-forwarding\Forward\client_service\start_queue.php D:\SITES\qq-group-message-forwarding\Forward\client_service\start_register.php D:\SITES\qq-group-message-forwarding\Forward\client_service\start_timer.php D:\SITES\qq-group-message-forwarding\Forward\client_service\start_web.php start " pause;
windows只启动了httpserver的进程,文件监控进程及其他进程都没启动,linux是启动了的
能手动启动吗?怎么弄?
由于php在windows下不支持信号,所以暂时无法支持reload。
使用nodejs 的nodemon,参考 https://github.com/9raxdev/think-workerman