A course on quick performance winsyou can implement right now.
Learn how the optimize command speeds up Laravel.
Use the route cache to skip route compilation on each request.
Use the config cache to reduce configuration parsing & see its caveats.
Use eager loading and avoid the dreaded n+1 query problem.
Reduce memory usage on queries returning lots of data.
See how chunking by ID is much faster on large data sets.
We cover the sample application and the queries it makes.
We cover what a database index is & show creating a basic index.
We show how to improve our app's slow queries with indexes.
We discuss and configure object caching.
We add a naive implementation of caching.
We use the Decorator pattern to add caching to our app.
We discuss ways to reduce memory usage in Redis.