Showing 7 of 2,041 result(s)
In the last section, we explored the relative response times of different Statamic caching strategies and experimented with the response times of short-circuiting both Laravel and Statamic. We also discovered that the response times resulting from...
The goal of our custom caching system will be to get as close to the performance of the static HTML cache as we reasonably can without having to rely on Control Panel events for most cache invalidation, as well as support a few additional cache...
Currently, our caching system doesn't cache pages viewed by logged-in users. However, if a page was cached before a user logs in, that cached page is served to all logged-in users. While this might work for some websites, it poses challenges when...
Before going much further, we will take some time to get some structural changes and organization done. As we progress further along the development of our cache system, we will interact with our App\HybridCache\Manager implementation and from...
Since Laravel's console application and commands are built on top of the Symfony console component, we can use Symfony's console style system within our Laravel commands. Styles are used to control the background and foreground colors of text that...
The user interface we will work on building will utilize Alpine.js and Tailwind CSS version 2 (both of which are preconfigured with the Starter's Creek Starter Kit). When visitors initially view our blog post page, they will see this version of...
…define and manipulate them, and the default helper variables that exist to help you develop your project's templates as fast as possible. Perhaps the simplest thing we can do when working with Antlers arrays is to loop over them and print the...