| 1. |
What Is The Purpose Of Cache? How Is It Used? |
|
Answer» Caching is often considered as a PERFORMANCE-enhancement tool than a way to store application DATA. If u spends more SERVER RESOURCES in accessing the same data repeatedly, use caching instead. Caching data can bring huge performance benefits ,so whenever u find that u need to FREQUENTLY access data that doesn't often change, cache it in the cache object and your application's performance will improve. Caching is often considered as a performance-enhancement tool than a way to store application data. If u spends more server resources in accessing the same data repeatedly, use caching instead. Caching data can bring huge performance benefits ,so whenever u find that u need to frequently access data that doesn't often change, cache it in the cache object and your application's performance will improve. |
|