Google News
logo
CakePHP - Interview Questions
How many types of cache are supported by CakePHP?
In CakePHP, Cache makes your application run faster by storing complex query results for faster access. The types of cache supported by CakePHP are,
 
File cache : It is the simplest and slowest cache to store large elements.

APCu cache : It is a fast cache and uses shared memory to store elements. It provides basic read and writes features.

Wincache : It is the same APCu cache, but it is optimized for Windows.

Redis : It provides a fast and persistent cache.

Array : It is a run-time storage cache for storing elements in order.
Advertisement