ストリームのデータ構造とコマンド
エントリの追加(`XADD`)、ストリームからの読み取り(`XREAD`)、ストリーム長の管理を学びます。
「ストリームのデータ構造とコマンド」はCoddyKit上の無料Redis Caching & Messaging (Pub/Sub, Streams)レッスンです。 これはレッスン2/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはRedis Caching & Messaging (Pub/Sub, Streams)学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Redis Caching & Messaging (Pub/Sub, Streams)コースには全4レッスンが含まれています。
このレッスンの一部はまだ翻訳されておらず、英語で表示されています。
Welcome to Stream Data
In the previous lesson, we learned what Redis Streams are. Now, let's dive into their core structure and how we interact with them.
Redis Streams are powerful, append-only data structures that act like a log, storing a sequence of entries. Each entry has a unique ID and a set of field-value pairs.
Stream Entry Anatomy
Each entry in a Redis Stream is like a small record. It consists of:
- Entry ID: A unique identifier, typically a timestamp and a sequence number (e.g.,
1678886400000-0). - Field-Value Pairs: One or more key-value pairs representing the actual data of the entry (e.g.,
sensor-id: 123,temperature: 25.5).
Think of it like a mini-hash map stored chronologically within the stream.
Adding Entries with XADD
To add a new entry to a Redis Stream, we use the XADD command. This command appends a new entry to the end of the stream, generating a unique ID.
The basic syntax is:
XADD key ID field value [field value ...]For the ID argument, you'll typically use * to let Redis automatically assign a unique ID based on the current time.
XADD Command Example
Let's add some sensor data to a stream named sensor_readings. We'll use * to let Redis automatically assign a unique ID.
XADD sensor_readings * sensor-id 101 temperature 23.5 humidity 60
XADD sensor_readings * sensor-id 102 temperature 24.1 humidity 62Reading from Streams: XREAD
Once data is in a stream, you'll want to read it. The XREAD command is used for this purpose. It allows you to read entries from one or more streams, starting from a specific ID.
A common way to read from the very beginning of a stream is to use 0-0 as the starting ID for that stream.
Basic XREAD Operations
Let's read the entries we just added. We can specify COUNT to limit the number of entries returned. The $ ID means 'read only new entries added since the last time I read' or 'from now' if it's the first read. It's great for tailing a stream!
XREAD COUNT 2 STREAMS sensor_readings 0-0
XREAD STREAMS sensor_readings $Managing Stream Length: MAXLEN
Streams can grow infinitely, consuming a lot of memory. To prevent this, Redis allows you to limit the maximum length of a stream using the MAXLEN option with XADD.
When the stream exceeds the specified length, older entries are automatically evicted from the head of the stream.
XADD with MAXLEN Example
We can add entries and ensure our sensor_readings stream never exceeds a certain number of entries. Using ~ before the count makes the trimming approximate, which is faster and often sufficient.
XADD sensor_readings MAXLEN ~ 3 * sensor-id 103 temperature 24.8 humidity 61
XADD sensor_readings MAXLEN ~ 3 * sensor-id 104 temperature 25.2 humidity 63
XADD sensor_readings MAXLEN ~ 3 * sensor-id 105 temperature 25.0 humidity 60
XLEN sensor_readingsQuick Check: Stream Commands
You've learned about adding and reading stream entries, as well as managing stream length. Let's test your understanding.
Recap: Stream Basics
Great job! In this lesson, you mastered the fundamental commands for interacting with Redis Streams:
XADD: To append new entries with unique IDs and field-value pairs.XREAD: To retrieve entries from streams, starting from a specific ID or reading new entries with$.MAXLEN: To control stream size duringXADDoperations, preventing unbounded memory growth.
Next, we'll explore how Streams provide message persistence and ordered delivery, differentiating them from Pub/Sub.
よくある質問
「ストリームのデータ構造とコマンド」レッスンは無料ですか?
はい。「ストリームのデータ構造とコマンド」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Redis Caching & Messaging (Pub/Sub, Streams)コースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Redis Caching & Messaging (Pub/Sub, Streams)コースには全4レッスンが含まれています。
「ストリームのデータ構造とコマンド」で何を学びますか?
エントリの追加(`XADD`)、ストリームからの読み取り(`XREAD`)、ストリーム長の管理を学びます。 ブラウザで直接実行するハンズオンコードでRedis Caching & Messaging (Pub/Sub, Streams)を演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。
Redis Caching & Messaging (Pub/Sub, Streams)を始めるのに経験は必要ですか?
事前経験は必要ありません。CoddyKitのRedis Caching & Messaging (Pub/Sub, Streams)は初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン2/4です。
「ストリームのデータ構造とコマンド」レッスンにはどのくらい時間がかかりますか?
ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。
このRedis Caching & Messaging (Pub/Sub, Streams)レッスンでコードを書いて実行できますか?
はい。すべてのRedis Caching & Messaging (Pub/Sub, Streams)レッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。
このコースのすべてのレッスン
- Redis Streams とは?
- ストリームのデータ構造とコマンド
- ストリームメッセージの永続化
- ストリームの上限設定とトリミング