hi , i have an application which i am using debug bar on it and the booting time of apllication is close to 1 sec . and on each api and request it makes load so heavy like 1 sec or more i wanted to know what each of them means because my application time is so low but booting is so high thanks
this is not an issue of package! you had to ask this in a forum discussion
booting is the process of preparing all the services that laravel provides
you can use php artisan optimize in laravel 7 to do some caching and improve this time
p.s if you have heavy service providers onyour own, do sth about them
Booting is the time from the request start until the debugbar is booted in the booted() section of the service providers. Everything before that is the framework itself + service providers registering (and perhaps some booting, depending on the order)
@barryvdh thanks for the answer
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If this issue is still present on the latest version of this library on supported Laravel versions, please let us know by replying to this issue so we can investigate further.
Thank you for your contribution! Apologies for any delayed response on our side.
Most helpful comment
Booting is the time from the request start until the debugbar is booted in the booted() section of the service providers. Everything before that is the framework itself + service providers registering (and perhaps some booting, depending on the order)