#caching
3 snippets tagged with #caching
typescriptbeginner
Cached Fetch with Revalidation
Fetch external data in Server Components with time-based revalidation and error boundaries.
#fetch#caching
sqladvanced
Materialized View with Auto-Refresh
Create and maintain materialized views for expensive aggregate queries with concurrent refresh support.
#materialized-view#performance
pythonbeginner
functools.cache and lru_cache
Memoize expensive function calls with functools.cache and lru_cache for automatic result caching.
#caching#functools