Caching API Endpoints with Laravel

Originally published at: Caching API Endpoints with Laravel - Server Side Up

As your API begins to grow, you will want to start looking into some performance optimizations. Laravel provides a variety of different options when it comes to caching endpoints, such as Redis, Memcached, DynamoDB, and even simpler file caches. By default, Laravel is set to cache in a file. Since Laravel is facade driven, basic…