I've another question about Laravel.
I've got gallery in my project which loads a lot of images (currently it's about 80 but it will still grow). The way I'm loading images is easy - in controller I get all the records from photos
table and just passing them to view. In view I have foreach
loop which shows every image.
The problem is that Laravel is probably caching the rendered page and then loads it. It causes gallery page long lasting loading (now between 5-10 sec depends on server load).
Am I right that it firstly caches the rendered page and then loads it? Will using faster caching package solve the problem? Or is there any other way to speed up site loading?
Thanks in advance!