Explore

Find agent skills by outcome

83,990 skills indexed with the new KISS metadata standard.

Showing 24 of 83,990Categories: Coding & Debugging, Cursor-rules, General, Creative, Communication
Coding & Debugging
PromptBeginner5 minmarkdown

Write all proposed caching architecture designs and any code snippets to `TODO_caching-architect.md` only. Do not create any other files. If specific files should be created or edited

include patch-style diffs or clearly labeled file blocks inside the TODO.

0
General
PromptBeginner5 minmarkdown

In `TODO_caching-architect.md`

include:

0
General
PromptBeginner5 minmarkdown

### CDN (CloudFront

Cloudflare

0
General
PromptBeginner5 minmarkdown

- Configure cache-control headers (`max-age`

`s-maxage`

0
General
PromptBeginner5 minmarkdown

- **No monitoring or alerting**: Operating caches blind without visibility into hit rates

latency

0
General
PromptBeginner5 minmarkdown

- Implement consistent hashing client-side (e.g.

libketama) for predictable key distribution

0
General
PromptBeginner5 minmarkdown

- Monitor with `INFO` command metrics: `keyspace_hits`

`keyspace_misses`

0
General
PromptBeginner5 minmarkdown

### Memcached (Distributed

Multi-threaded)

0
General
PromptBeginner5 minmarkdown

- Configure `maxmemory-policy` per instance based on workload (allkeys-lfu for general caching

volatile-ttl for mixed workloads)

0
General
PromptBeginner5 minmarkdown

### Redis (Clusters

Sentinel

0
General
PromptBeginner5 minmarkdown

- Enable compression (LZ4

Snappy) for large values where CPU overhead is acceptable

0
General
PromptBeginner5 minmarkdown

- Choose binary serialization (Protocol Buffers

MessagePack) over JSON for reduced size and faster parsing

0
General
PromptBeginner5 minmarkdown

- Use hierarchical namespaced keys (e.g.

`app:user:123:profile`) for logical grouping and bulk invalidation

0
General
PromptBeginner5 minmarkdown

- [ ] Security controls (TLS

authentication

0
General
PromptBeginner5 minmarkdown

- [ ] Monitoring covers hit rates

latency

0
Creative
PromptBeginner5 minmarkdown

- Design load tests simulating cache stampede

hot key

0
General
PromptBeginner5 minmarkdown

- Create benchmark suite measuring cache hit rates

latency percentiles (p50

0
General
PromptBeginner5 minmarkdown

- Define alerting thresholds for cache health (hit rate drops

latency spikes

0
General
PromptBeginner5 minmarkdown

- Document cache key schema with namespaces

versioning

0
General
PromptBeginner5 minmarkdown

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

tiered storage (hot/warm/cold)

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
General
PromptBeginner5 minmarkdown

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

key replication across shards

0