Redis Caching & Messaging (Pub/Sub, Streams) · 课时

Redis 简介

了解 Redis 的定义、架构及其在应用开发中的主要使用场景

第 1 / 4 课11 个步骤

Redis 简介 是 CoddyKit 上的免费 Redis Caching & Messaging (Pub/Sub, Streams) 课时。 这是第 1 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Redis Caching & Messaging (Pub/Sub, Streams) 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Redis Caching & Messaging (Pub/Sub, Streams) 课程共包含 4 节课。

本课时的部分内容尚未翻译,以英文显示。

Welcome to Redis!

Redis (Remote Dictionary Server) is a blazing-fast, in-memory key-value store. Developers reach for it for caching, sessions, and real-time analytics.

Data in RAM for Speed

Redis is in-memory: it keeps data in RAM, making reads and writes far faster than disk-based databases. It can still persist to disk when you need durability.

The Simple Power of Key-Value

At its core Redis is a key-value store — look up a value by its unique key, like a dictionary. Values can be strings, lists, hashes, or sets.

Blazing Fast Performance

Redis is fast for three reasons: it's in-memory, written in optimized C, and single-threaded — which avoids locks on data operations entirely.

Use Case: Caching

The classic use case is caching: store hot data in Redis so repeat reads come back instantly, sparing your slow database and speeding up the app.

Use Case: Session Store

Redis is great for user session data. Any server can read the shared session, so it scales web apps where requests hit different machines.

Use Case: Real-time Features

Speed plus rich data structures make Redis ideal for real-time features: leaderboards, live analytics, and Pub/Sub messaging between services.

Redis Architecture: Client-Server

Redis uses a client-server model: the server runs as a process waiting for connections, and your clients send commands and get responses back.

How We Interact with Redis

Two ways to talk to Redis: the redis-cli for manual testing and admin, or client libraries (Python, Java, Node) for talking to it from your code.

Quick Check: Redis Basics

Based on what you've learned, which of the following are key characteristics or common use cases of Redis?

Redis: Fast, Flexible, Fundamental

Recap: Redis is an in-memory key-value store, fast by design, used for caching, sessions, and real-time features over a simple client-server architecture.

免费开始

用 AI 导师学习 Redis Caching & Messaging (Pub/Sub, Streams) — 免费

在浏览器中编写并运行真实代码,获得全天候 AI 导师的即时帮助,并在网页或应用中继续学习。

课程
12
课程
48

常见问题解答

「Redis 简介」课时是免费的吗?

是的 — 「Redis 简介」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Redis Caching & Messaging (Pub/Sub, Streams) 课程的其余内容,请升级到 CoddyKit PRO。 Redis Caching & Messaging (Pub/Sub, Streams) 课程共包含 4 节课。

「Redis 简介」这节课中我会学到什么?

了解 Redis 的定义、架构及其在应用开发中的主要使用场景 你通过在浏览器中直接运行的动手代码来练习 Redis Caching & Messaging (Pub/Sub, Streams),全天候 AI 导师会在你学习这节课的过程中回答你的问题。

学习 Redis Caching & Messaging (Pub/Sub, Streams) 需要有经验吗?

无需任何先前经验。CoddyKit 上的 Redis Caching & Messaging (Pub/Sub, Streams) 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 1 节课,共 4 节。

「Redis 简介」课时需要多长时间?

大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。

我能在这节 Redis Caching & Messaging (Pub/Sub, Streams) 课中编写并运行代码吗?

能。每节 Redis Caching & Messaging (Pub/Sub, Streams) 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。

此课程中的所有课时

  1. Redis 简介
  2. Redis CLI 基础
  3. Redis 核心数据结构
  4. Redis 中的密钥过期与 TTL
← 返回 Redis Caching & Messaging (Pub/Sub, Streams)