Explore

Find agent skills by outcome

101,036 skills indexed with the new KISS metadata standard.

Showing 24 of 101,036Categories: Data & Insights, Data, General, Writing & Content, Coding & Debugging, Creative
General
PromptBeginner5 minmarkdown

- **Cost optimization**: Right-sizing cache instances

tiered storage (hot/warm/cold)

0
General
PromptBeginner5 minmarkdown

- Document cache key schema with namespaces

versioning

0
Writing & Content
PromptBeginner5 minmarkdown

- Map each data entity to its invalidation strategy (write-through

write-behind

0
General
PromptBeginner5 minmarkdown

- **High availability**: Redis Sentinel or Cluster mode

Memcached replication

0
General
PromptBeginner5 minmarkdown

- **Security**: Encryption in transit (TLS)

authentication (Redis AUTH

0
General
PromptBeginner5 minmarkdown

- **Cache stampede prevention**: Mutex locks

probabilistic early expiration

0
Data
PromptBeginner5 minmarkdown

- **Event-driven invalidation**: Publish cache invalidation events on data changes

scalable for distributed systems

0
General
PromptBeginner5 minmarkdown

- **Hot key mitigation**: Local caching of hot keys

key replication across shards

0
Writing & Content
PromptBeginner5 minmarkdown

- **Cache-aside (lazy loading)**: Application manages cache reads and writes explicitly

simple but risk of stale reads

0
Writing & Content
PromptBeginner5 minmarkdown

- **Write-behind (write-back)**: Asynchronous batch writes to backing store

lower write latency

0
Writing & Content
PromptBeginner5 minmarkdown

- **Write-through**: Synchronous cache update on every write

strong consistency

0
Data
PromptBeginner5 minmarkdown

- **Database caching**: Query result caching

materialized views

0
General
PromptBeginner5 minmarkdown

- **Application-level caching**: In-process caches (e.g.

Guava

0
Data
PromptBeginner5 minmarkdown

- **Distributed caching**: Redis clusters for shared state

Memcached for simple key-value hot data

0
General
PromptBeginner5 minmarkdown

- Plan for cache stampede prevention using locking

probabilistic early expiration

0
General
PromptBeginner5 minmarkdown

- Implement cache hit rate monitoring

latency tracking

0
General
PromptBeginner5 minmarkdown

- **CDN caching**: Static assets

dynamic page caching with edge-side includes

0
General
PromptBeginner5 minmarkdown

### 5. Monitoring

Failover

0
General
PromptBeginner5 minmarkdown

- Configure eviction policies (LRU

LFU

0
Data
PromptBeginner5 minmarkdown

- Calculate cache memory requirements based on data size

cardinality

0
General
PromptBeginner5 minmarkdown

- Select appropriate caching technologies (Redis

Memcached

0
Writing & Content
PromptBeginner5 minmarkdown

- Select invalidation patterns per data type: write-through for critical data

write-behind for write-heavy workloads

0
Creative
PromptBeginner5 minmarkdown

- Design from the outside in: CDN layer

application cache layer

0
Creative
PromptBeginner5 minmarkdown

- **Select optimal caching technologies** based on use case requirements

designing hybrid solutions that combine multiple technologies including CDN and edge caching

0