/file-monitor

monitor file and reload your service

Primary LanguagePHP

自动重启脚本

方法一

  • 使用inotify监听PHP源码目录
  • 程序文件更新时自动reload服务器程序

运行脚本

依赖inotifyswoole扩展

pecl install swoole
pecl install inotify

运行程序

php inotify.php

测试效果

echo "Test" > /test/test.php

方法二

  • 通过计算文件散列表监听文件变化
  • 程序文件更新时自动reload服务器程序

运行脚本

依赖inotifyswoole扩展

pecl install swoole

运行程序

php md5.php

测试效果

echo "Test2" > /test/test.php