Skip to content
Tag16 articles1 course

Redis

Everything on CoreConcept tagged with Redis. Explore related tags below.

Related tags

Courses

Intermediate~6.5 hours

From fundamentals to production — caching strategies, eviction policies, invalidation, Redis, CDN caching, and multi-level architectures. Practical patterns and a guided final project you build in your own stack (no bundled starter repo).

Articles

In high-concurrency microservices architectures, preventing race conditions when multiple stateless worker instances access shared resources requires Distribute

Aug 1, 20263 min read
Read

Rate Limiting is a critical defense mechanism for production APIs, protecting downstream microservices from traffic spikes, denial-of-service (DoS) attacks, and

Aug 1, 20263 min read
Read

In-memory caching is an essential component of high-throughput web architectures, reducing database read load and accelerating API response times. When selectin

Aug 1, 20265 min read
Read

A product page feels instant on the second visit because some layer reused work from the first. The useful beginner question is not “should we add Redis?” but “

Jul 16, 20265 min read
Read

A Redis GET can be constant-time and still miss its latency target when a large Lua script is ahead of it, the client opens a new TLS connection, or the value t

Jul 5, 20267 min read
Read

A product page is easy to cache until a price changes: the CDN still has the old response, one app instance has an older in-process value, and Redis has already

Jul 4, 20268 min read
Read

A product page's cache key expires at 2:00:00pm. In the same instant, 5,000 concurrent requests check the cache, all get a miss, and all 5,000 independently que

Jul 21, 20267 min read
Read

Two background workers pick up the same financial payout job at the exact same millisecond. Without mutual exclusion across separate servers, both workers proce

Aug 3, 20269 min read
Read

Large Language Model (LLM) API calls — such as requesting completions from Google Gemini 1.5 Flash — introduce significant financial costs ($/token) and latency

Aug 3, 20269 min read
Read

Primary relational databases (like PostgreSQL or MySQL) execute disk I/O and query compilation for every read query. As application concurrency grows to thousan

Aug 3, 20269 min read
Read

Executing long-running computations — such as generating PDF invoices, processing video uploads, or sending transactional email batches — inside synchronous web

Aug 3, 20269 min read
Read

A single Node.js WebSocket process running Socket.IO can comfortably handle 10,000 concurrent client TCP connections on a standard cloud VM. However, as user tr

Aug 4, 20269 min read
Read

Exposing public REST or GraphQL API endpoints without strict rate limiting guarantees system instability during unexpected traffic bursts or malicious DDoS atta

Aug 4, 20269 min read
Read

As web applications scale to hundreds of thousands of active users, querying relational databases for every page view creates severe I/O bottlenecks and high da

Aug 5, 20263 min read
Read

Deploying Machine Learning models to production introduces a subtle but catastrophic failure mode: Training-Serving Data Skew. When feature engineering logic (s

Aug 6, 20264 min read
Read

A Redis SET key value NX EX 5 lock stops a cache stampede in theory, but two implementation details separate a lock that actually works under concurrent load fr

Aug 3, 20269 min read
Read

Want a curated collection instead? Topic hubs group the best content by subject.

Browse Topics