Subscribe to PHP Freaks RSS

murze.be: ★ Caching the entire response of a Laravel app

syndicated from www.phpdeveloper.org on May 23, 2019

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?...