caophuong2012 / til

What I've learned today
0 stars 0 forks source link

How does Drupal cache data? #13

Open caophuong2012 opened 8 years ago

caophuong2012 commented 8 years ago

Caching is built-in function in Drupal. After enabling caching, Drupal will begin storing database in a special tables that allows for faster respone times. So, this caching table can be out of sync with the underlying data. You can also set 'Minimum cache lifetime' or 'Expiration of cached pages'. And of course, the 'Clear all caches' will force Drupal to retrieve the latest data as it rebuils the cache.

caophuong2012 commented 8 years ago

You can follow this path to configure the cache: Home » Administration » Configuration » Development » Performance