________ is a caching strategy used to store frequently accessed data in memory to reduce the load on the database.

  • Lazy loading
  • Materialized view
  • Memoization
  • Write-through caching
Materialized view is a caching strategy commonly used in database systems to store frequently accessed query results in memory. It precomputes and stores the results of queries as tables, allowing for faster retrieval and reduced load on the underlying database by avoiding repeated execution of expensive queries. This helps in improving query performance and overall system scalability.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *