Laravel-debugbar: what booting and application means in time line

Created on 6 Aug 2020  路  4Comments  路  Source: barryvdh/laravel-debugbar

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

stale

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)

All 4 comments

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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

coderdiaz picture coderdiaz  路  4Comments

thomthom picture thomthom  路  5Comments

knvpk picture knvpk  路  5Comments

hookover picture hookover  路  4Comments

mnameghi picture mnameghi  路  6Comments