Skip to content

Commit

Permalink
Update drupal-for-engineers.md
Browse files Browse the repository at this point in the history
  • Loading branch information
timozura authored Sep 20, 2023
1 parent 72a7a8a commit 0206b75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Caching is the process of storing files in a temporary storage, or cache. The re

The first layer is the browser cache. Browsers will save copies of all, or most of the content of a webpage on the device's hard drive. This way, when the user re-visits the webpage, the browser won't have to re-download all of the content and can bring up the page much quicker.

The second layer that most teams will need to be aware of is the Drupal cache. Most of our sites will have Drupal core's internal page cache module enabled. This makes it so that pages are cached for any anonymous user's visiting the site. Basically when the first anonymous user visits a Drupal page, Drupal will save the results of any queries or requests that it performs into its cache. It will then serve those cached results for all anonymous users. The time that Drupal holds on to these results can be altered in the administrative interface.
The second layer that most teams will need to be aware of is the Drupal cache. Most of our sites will have Drupal cores internal page cache module enabled. This makes it so that pages are cached for any anonymous users visiting the site. When the first anonymous user visits a Drupal page, Drupal will save the results of any queries or requests that it performs into its cache. It will then serve those cached results for all anonymous users. The time that Drupal holds on to these results can be altered in the administrative interface.

Check warning on line 21 in practice-areas/engineering/drupal/onboarding-materials/drupal-for-engineers.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-for-engineers.md#L21

Expected a straight apostrophe: `'`, not `’` apostrophe retext-quotes
Raw output
    21:119-21:120  warning  Expected a straight apostrophe: `'`, not `’`               apostrophe               retext-quotes

After these first two layers, there can be several other layers of caching depending on your site's hosting and any CDNs you may be using. You should check with the engineers on your team if you'd like to learn more about these extra layers of caching.

Expand Down

0 comments on commit 0206b75

Please sign in to comment.