Rushy Rian
Rushy Rian

Reputation: 37

Laravel Performance issue in Production server

Hi i just put my app in production and the laravel application is very slow, even slow then in my local server.

May i know any trips and tricks to increase peformance.

Upvotes: 1

Views: 1171

Answers (1)

Mohamed Akram
Mohamed Akram

Reputation: 2117

Run this in command line to boost the performance

   composer dump-autoload
php artisan clear-compiled
php artisan config:cache
php artisan route:cache
php artisan optimize --force

Upvotes: 1

Related Questions