加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
start_queue.sh 491 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
#at linux, $r variable should be wrapped in ''; because $r is not shell variable in '';
queue=`php -r '$r = (include "config/queue.php");echo $r["default"];'`
delay=2
memory=128
sleep=3
tries=2
timeout=600
pid=`cat start_queue.pid`
echo "kill queue:work pid: $pid"
kill -9 $pid
echo "start $queue"
nohup php think queue:listen --queue $queue --delay $delay --memory $memory --sleep $sleep --tries $tries --timeout $timeout 2>&1 & echo $! > start_queue.pid
ps -aux | grep $queue
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化