


First introduce the pub/sub function of redis:
The Pub/Sub feature, which stands for Publish and Subscribe, refers to the functionality of publishing and subscribing.. In event-based systems, Pub/Sub is currently a widely used communication model. It uses events as the basic communication mechanism to provide a loosely coupled interaction model required by large-scale systems: subscribers (such as clients) subscribe to events. The method expresses an event or a type of event that it is interested in receiving; the publisher (such as the server) can notify relevant subscribers at any time of events that the subscriber is interested in.
In lay terms, it means that my sub-side (subscriber) is always listening. Once the pub-side (publisher) publishes a message, then I will receive it. For example, the publisher first:
#coding:utf-8 import time import redis number_list = ['300033', '300032', '300031', '300030'] signal = ['1', '-1', '1', '-1'] rc = redis.StrictRedis(host='***', port='6379', db=3, password='********') for i in range(len(number_list)): value_new = str(number_list[i]) + ' ' + str(signal[i]) rc.publish("liao", value_new) #发布消息到liao
Then let’s take a look at the subscribers:
#coding:utf-8 import time import redis rc = redis.StrictRedis(host='****', port='6379', db=3, password='******') ps = rc.pubsub() ps.subscribe('liao') #从liao订阅消息 for item in ps.listen(): #监听状态:有消息发布了就拿过来 if item['type'] == 'message': print item['channel'] print item['data']
Regarding the data structure, that is, item, it is similar to: {'pattern': None, 'type': 'message', 'channel' : 'liao', 'data': '300033 1'}, so you can use the channel to determine which queue the message belongs to. (When running the program, run the subscriber first, and then run the publisher program)
To summarize, there are two main points:
The first is the connection method. There are three ways to use python to connect to redis: ① Use the Redis class in the library (or the StrictRedis class, which is almost the same); ② Use the ConnectionPool connection pool (which can maintain long connections); ③ Use the Sentinel class (if there are multiple redis clusters, The program will choose a suitable connection itself).
The second is the subscription method. The pubsub method in the StrictRedis class is used here. The way to subscribe to redis messages is to use the subscribe or psubscribe method, which starts after the connection is successful. Where subscribe is to subscribe to one channel, psubscribe can subscribe to multiple channels (when written like this, the channel as a parameter should be a list). Then you can start monitoring.
The above is the detailed content of How to implement Redis subscription and publishing using the sub-pub mechanism in python. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
