@delon/cache Caching Strategies Skill This skill helps implement caching using @delon/cache library. Core Principles Cache Types - Memory Cache : Fast, in-memory caching (lost on page refresh) - LocalStorage Cache : Persistent across sessions - SessionStorage Cache : Persistent within session only Features - TTL-based expiration - Cache invalidation (manual and automatic) - Cache grouping and namespacing - HTTP request caching with interceptors - Observable support for async data Configuration Cache Service Memory Cache (Default) LocalStorage Cache (Persistent) SessionStorage Cache Lazy Loadi…