Question:What is the purpose of active record caching?
Answer It enables us to save a query for use later on in our script execution. Usually, an SQL query is reset after it has been completed. With Active Record cashing we can prevent this reset and reuse queries easily.
+ Report
What is the purpose of active record caching?