slow page loading when cache is false
On a fresh laravel 10 + filament 2 , I observed a very slow loading of admin page when I set
‘cache’ => false in config/view.php
I’m not sure if it’s expected behaviour or not I can file a reproduction repository of its not a expected behaviour. Thanks.
3 Replies
Yes I'm reasonably sure this is to be expected... all Blade components are be recompiled for every single page view
This is absolutely expected behavior, and why view caching is a thing.
Thanks for info