โ˜… Caching the entire response of a Laravel app

1 ยท Freek Van der Herten ยท May 20, 2019, 11:30 a.m.
When a request comes in your app will return a response. To create that response, your application has to do some work. Most likely queries will execute. This all takes some time. Wouldn't it be nice if the same request comes in, we can return the response the application has constructed previously? That's precisely what our package laravel-responsecache can do for you. It can speed up your application by caching the entire response. We recently released a new major version of the package that h...