什么是最大值php artisan命令的执行时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了什么是最大值php artisan命令的执行时间相关的知识,希望对你有一定的参考价值。
我只是想知道,laravel工匠命令的最长执行时间是多少?
它是无限的像php shell脚本还是artisan / laravel对无限循环命令有某种保护?
因为我想制作一个永远运行的命令,只要服务器正在运行。 Laravel Artisan可以吗?
谢谢
我只是想知道,laravel工匠命令的最长执行时间是多少?
如果通过命令行运行它 - 它可以是无限期的。
它是无限的像PHP shell脚本或剂量artisan / laravel对无限循环命令有某种保护?
没有保护 - 你可以自由地做你想做的事。
因为我想制作一个永远运行的命令,只要服务器正在运行。 Laravel Artisan可以吗?
我做了类似的事情 - 我有一个php artisan命令,目前已经运行了89天没有问题到目前为止。但正如下面提到的Aross,问题是如果命令由于某种原因确实失败了,你需要知道它。
默认值为零,表示没有时间限制。尽管默认情况下最大执行时间为30,但这不会影响命令行进程。
从这里查看文档: - http://php.net/manual/en/info.configuration.php#ini.max-execution-time
希望这会有所帮助,干杯!
从shell(或cron)运行php artisan
使用PHP的标准CLI配置。所以是的,以这种方式运行的脚本不会受时间限制(默认情况下)。但是,由于PHP的设计和有限的内存效率,使用supervisor和memmon设置脚本是个好主意。
以下是来自here的Supervisor配置示例:
[supervisord]
logfile = /tmp/supervisord.log
#loglevel = debug
# Try keeping your-app running at all times.
[program:your-app]
command=/your/app
autostart=true
autorestart=true
startsecs=5
startretries=3
stopsignal=TERM
stopwaitsecs=10
log_stdout=true
log_stderr=true
logfile=/tmp/your-app.log
logfile_maxbytes=10MB
logfile_backups=10
# Restart your-app when it's using more than 50MB of memory
[eventlistener:memmon]
command=memmon -p your-app=50MB
# Check every 60 seconds
events=TICK_60
# The eventlistener plugin depends on [rpcinterface:supervisor] and a server
# [inet_http_server] or [unix_http_server] to communicate to the supervisor.
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[supervisord]
logfile = /tmp/supervisord.log
#loglevel = debug
[inet_http_server]
port = 9001
您可以独立于任何默认配置时间限制运行php应用程序:
php -d max_execution_time=0 script.php
附: Set max_execution_time in PHP CLI
以上是关于什么是最大值php artisan命令的执行时间的主要内容,如果未能解决你的问题,请参考以下文章
为啥 PHP artisan migrate 命令显示错误?
“php artisan ui vue --auth”命令和“php artisan ui:auth”有啥区别