가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Chapter 8

Pub/Sub, Streams, Queues, and Event-Driven Workflows

Use Redis for lightweight messaging, event notifications, and background workflow coordination.

Inside this chapter

  1. Redis Beyond Caching
  2. Pub/Sub
  3. Lists and Queues
  4. Streams
  5. Real Example

Series navigation

Study the chapters in order for the clearest path from Redis basics to advanced cache architecture, operations, and distributed-system design. Use the navigation at the bottom to move smoothly through the full tutorial series.

Tutorial Home

Chapter 8

Redis Beyond Caching

Redis is not limited to cache lookups. It can also support communication and coordination patterns between services or application components.

Chapter 8

Pub/Sub

Pub/Sub allows publishers to send messages to channels and subscribers to receive them in real time. This works well for transient notifications but is not the same as durable queue processing.

Chapter 8

Lists and Queues

Redis lists can be used for simple queues. This is useful for lightweight background jobs or handoff between components, though teams should understand delivery guarantees and operational limits.

Chapter 8

Streams

Redis Streams add more powerful event-log style capabilities, including consumer groups and ordered records. They are useful when messaging requirements grow beyond basic pub/sub.

Chapter 8

Real Example

An e-commerce system may publish inventory updates, queue email notifications, or stream order events for downstream services. Redis can support these coordination patterns when matched to the right scale and durability expectations.

Copyright © 2026, WithoutBook.