0Pricing
Redis Caching & Messaging (Pub/Sub, Streams) · Leçon

Abonnements avec correspondance de motifs

Utilisez `PSUBSCRIBE` pour vous abonner à plusieurs canaux selon des motifs et gagner en flexibilité.

Abonnements avec correspondance de motifs est une leçon Redis Caching & Messaging (Pub/Sub, Streams) gratuite sur CoddyKit. Ceci est la leçon 1 sur 4. Tu peux lire la leçon complète ci-dessous gratuitement — puis la pratiquer en direct dans le navigateur avec un éditeur de code intégré et un tuteur IA 24/7. Elle fait partie du parcours d'apprentissage Redis Caching & Messaging (Pub/Sub, Streams), et ta progression se synchronise sur le web et l'application CoddyKit. Le cours Redis Caching & Messaging (Pub/Sub, Streams) comprend 4 leçons au total.

Certaines parties de cette leçon n'ont pas encore été traduites et s'affichent en anglais.

Flexible Subscriptions with Patterns

Welcome to a powerful feature of Redis Pub/Sub: Pattern Matching Subscriptions. Instead of subscribing to a single, exact channel name, you can subscribe to multiple channels using flexible patterns.

This allows your application to listen for a wider range of related messages with a single subscription, making your message handling more dynamic.

Why Use Pattern Matching?

Imagine you have many services, each publishing events to channels like service.auth.login, service.orders.created, or service.inventory.updated.

  • Centralized Logging: A single logger service can subscribe to service.* to catch all events.
  • Dynamic Event Handling: Easily react to new event types without changing subscription code.
  • Microservices: Decouple services further by allowing them to publish to specific sub-channels within a pattern.

PSUBSCRIBE in the Redis CLI

The command for pattern matching is PSUBSCRIBE. Let's see how it works in the Redis CLI.

First, open a Redis CLI client and run:

PSUBSCRIBE log.*

The Asterisk (*) Wildcard

The * (asterisk) wildcard is used to match any sequence of characters (including an empty sequence) within a single part of a channel name.

For example, log.* will match log.app, log.system, but not log.web.server because * only matches up to the next . (dot).

If you then publish a message:

PUBLISH log.app "User logged in"

The Question Mark (?) Wildcard

The ? (question mark) wildcard matches exactly one character at a specific position.

This is useful when you expect a fixed number of characters, like an ID or a specific status code.

Try this pattern in your CLI:

PSUBSCRIBE device.temp.??

Combining Wildcards for Power

You can combine * and ? for even more granular control over your subscriptions. This allows for highly flexible and specific pattern matching.

Consider a pattern like chat.room.*.user.???. This pattern would match channels like chat.room.general.user.001 or chat.room.private.user.abc, but not chat.room.main.user.1 (too few chars for ???).

If a message is published to chat.room.general.user.007, it would be received by the above pattern.

Python `psubscribe` Example

Let's see how to implement pattern subscriptions using a Python client library (redis-py). This subscriber will listen for any message on channels matching events.*.

Run this code first, then the publisher in the next scene:

import redis
import time

r = redis.Redis(decode_responses=True)
pubsub = r.pubsub()

pubsub.psubscribe('events.*')

print("Subscribed to 'events.*'. Listening for 5 seconds...")

start_time = time.time()
for message in pubsub.listen():
    if message['type'] == 'pmessage':
        print(f"Pattern: {message['pattern']}")
        print(f"Channel: {message['channel']}")
        print(f"Data: {message['data']}")
    
    if time.time() - start_time > 5: # Listen for 5 seconds
        pubsub.punsubscribe('events.*')
        break
    time.sleep(0.01)

print("Subscriber stopped.")

Python Publisher Interaction

Now, run this Python publisher. The messages it sends will be caught by the pattern subscriber you just ran, demonstrating the power of pattern matching.

import redis
import time

r = redis.Redis(decode_responses=True)

print("Publishing messages...")

r.publish('events.user.signup', 'New user: Alice')
time.sleep(0.5)
r.publish('events.product.view', 'Product ID: 12345')
time.sleep(0.5)
r.publish('events.order.placed', 'Order ID: 98765')
time.sleep(0.5)
r.publish('metrics.cpu', 'CPU usage: 85%') # This won't match 'events.*'

print("Messages published.")

Real-World Use Cases

Pattern matching subscriptions are incredibly versatile for building real-time applications:

  • Monitoring & Analytics: Collect data from various services (e.g., metrics.cpu.*, metrics.memory.*).
  • Notifications: Send alerts for different event types (e.g., alert.high_priority.*).
  • Multi-tenant Systems: Isolate messages for different tenants (e.g., tenant.123.events.*).
  • Dynamic Routing: Route messages to different handlers based on their channel patterns.

Test Your Pattern Skills

A client uses PSUBSCRIBE with the pattern device.*.status.?. Which of these published channel names would it receive messages from?

Recap: Dynamic Pub/Sub

You've learned how Redis PSUBSCRIBE allows for incredibly flexible and dynamic message routing in your applications. By using the * and ? wildcards, you can listen to broad categories of events or very specific sub-channels.

This capability is fundamental for building scalable and decoupled real-time systems, enabling powerful event-driven architectures.

Questions Fréquemment Posées

La leçon « Abonnements avec correspondance de motifs » est-elle gratuite ?

Oui — le texte complet de « Abonnements avec correspondance de motifs » est gratuit à lire ici sur le web. Pour la pratiquer de manière interactive (un éditeur de code intégré et un tuteur IA 24/7) et déverrouiller le reste du cours Redis Caching & Messaging (Pub/Sub, Streams), passe à CoddyKit PRO. Le cours Redis Caching & Messaging (Pub/Sub, Streams) comprend 4 leçons au total.

Qu'est-ce que j'apprendrai dans « Abonnements avec correspondance de motifs » ?

Utilisez `PSUBSCRIBE` pour vous abonner à plusieurs canaux selon des motifs et gagner en flexibilité. Tu pratiques Redis Caching & Messaging (Pub/Sub, Streams) avec du code pratique que tu exécutes directement dans le navigateur, et un tuteur IA 24/7 répond à tes questions au fur et à mesure que tu avances dans la leçon.

Dois-je avoir de l'expérience pour commencer Redis Caching & Messaging (Pub/Sub, Streams) ?

Aucune expérience préalable n'est requise. Redis Caching & Messaging (Pub/Sub, Streams) sur CoddyKit est structuré pour les débutants jusqu'aux apprenants avancés, donc tu peux commencer ici ou depuis le début et avancer à ton rythme. Ceci est la leçon 1 sur 4.

Combien de temps prend la leçon « Abonnements avec correspondance de motifs » ?

La plupart des leçons CoddyKit prennent environ 5–10 minutes. Chacune est courte et interactive, tu progresses régulièrement et tu repiques exactement où tu t'es arrêté sur le web et l'app.

Peux-tu écrire et exécuter du code dans cette leçon Redis Caching & Messaging (Pub/Sub, Streams) ?

Oui. Chaque leçon Redis Caching & Messaging (Pub/Sub, Streams) inclut un éditeur de code intégré, tu écris et exécutes du vrai code directement dans ton navigateur et tu reçois des retours IA instantanés — aucune configuration locale requise.

Toutes les leçons de ce cours

  1. Abonnements avec correspondance de motifs
  2. Conception d’une discussion en temps réel
  3. Architecture orientée événements
  4. Suivi de la présence et de l’état en ligne
← Retour à Redis Caching & Messaging (Pub/Sub, Streams)