search
HomeDatabaseRedisHow to use Redis and C++ to implement publish-subscribe function

How to use Redis and C++ to implement publish-subscribe function

Sep 21, 2023 pm 12:43 PM
redisc++publishsubscribe

How to use Redis and C++ to implement publish-subscribe function

How to use Redis and C to implement the publish-subscribe function requires specific code examples

Introduction:
Redis is an open source high-performance key-value storage system , which supports a variety of data structures and provides a series of client libraries suitable for various programming languages. The publish-subscribe function of Redis is one of its most commonly used functions, which can realize the publishing and subscribing of messages. It is very suitable for real-time communication, publishing systems and other scenarios. This article will introduce how to use Redis and C to implement publish-subscribe functionality, with detailed code examples.

Step 1: Install Redis
First, we need to install the Redis server. You can download the latest stable version from the Redis official website (https://redis.io/) and install and configure it according to the official documentation. After the installation is complete, ensure that the Redis server is running locally and listening to the default port 6379.

Step 2: Connect to the Redis server
Now we start writing C code, first we need to connect to the Redis server. Communication with the Redis server can be easily done using the hiredis library. hiredis is a simple, high-performance C client library that supports blocking and non-blocking operations to communicate with the Redis server.

First, we need to include the header file of the hiredis library in the C project and link the hiredis library. The sample code is as follows:

#include <iostream>
#include <hiredis/hiredis.h>

Next, we need to define a function to connect to the Redis server. The sample code is as follows:

redisContext* connectToRedis(const char* hostname, int port) {
    redisContext* conn = redisConnect(hostname, port);
    if (conn == NULL || conn->err) {
        if (conn) {
            std::cout << "Error: " << conn->errstr << std::endl;
        } else {
            std::cout << "Unable to allocate redis context." << std::endl;
        }
        return NULL;
    }
    return conn;
}

Step 3: Publish the message
When we successfully connect to the Redis server, we can start publishing messages. In Redis, you can use the PUBLISH command to publish messages to a specified channel. We can write a function to implement the function of publishing messages:

bool publishMessage(redisContext* conn, const char* channel, const char* message) {
    redisReply* reply = (redisReply*)redisCommand(conn, "PUBLISH %s %s", channel, message);
    if (reply && reply->type == REDIS_REPLY_INTEGER && reply->integer > 0) {
        freeReplyObject(reply);
        return true;
    }
    freeReplyObject(reply);
    return false;
}

Step 4: Subscribe to messages
We also need to write a function to subscribe to messages. In Redis, you can use the SUBSCRIBE command to subscribe to a specified channel. Write a function to implement the function of subscribing messages:

void subscribeChannel(redisContext* conn, const char* channel) {
    redisReply* reply = (redisReply*)redisCommand(conn, "SUBSCRIBE %s", channel);
    freeReplyObject(reply);
    while (redisGetReply(conn, (void**)&reply) == REDIS_OK) {
        if (reply->type == REDIS_REPLY_ARRAY && reply->elements >= 3 && strcmp(reply->element[0]->str, "message") == 0) {
            std::cout << "Received message: " << reply->element[2]->str << std::endl;
        }
        freeReplyObject(reply);
    }
}

Step 5: Test code
Now we can write a simple test code to verify whether our publish-subscribe function is working properly. The sample code is as follows:

int main() {
    // 连接Redis服务器
    redisContext* conn = connectToRedis("localhost", 6379);
    if (conn == NULL) {
        return 1;
    }

    // 发布消息
    std::string channel = "test_channel";
    std::string message = "Hello, Redis!";
    if (publishMessage(conn, channel.c_str(), message.c_str())) {
        std::cout << "Message published successfully." << std::endl;
    } else {
        std::cout << "Failed to publish message." << std::endl;
    }

    // 订阅消息
    subscribeChannel(conn, channel.c_str());

    // 关闭Redis连接
    redisFree(conn);

    return 0;
}

Summary:
Through the above steps, we successfully implemented the publish-subscribe function using Redis and C. Using Redis's publish-subscribe model, efficient messaging and real-time communication can be achieved. In addition, the hiredis library provides an easy-to-use API to facilitate our interaction with the Redis server. I hope this article can help readers understand how to use Redis and C to implement the publish-subscribe function, and practice it through detailed code examples.

The above is the detailed content of How to use Redis and C++ to implement publish-subscribe function. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Redis: Caching, Session Management, and MoreRedis: Caching, Session Management, and MoreMay 01, 2025 am 12:03 AM

Redis's functions mainly include cache, session management and other functions: 1) The cache function stores data through memory to improve reading speed, and is suitable for high-frequency access scenarios such as e-commerce websites; 2) The session management function shares session data in a distributed system and automatically cleans it through an expiration time mechanism; 3) Other functions such as publish-subscribe mode, distributed locks and counters, suitable for real-time message push and multi-threaded systems and other scenarios.

Redis: Exploring Its Core Functionality and BenefitsRedis: Exploring Its Core Functionality and BenefitsApr 30, 2025 am 12:22 AM

Redis's core functions include memory storage and persistence mechanisms. 1) Memory storage provides extremely fast read and write speeds, suitable for high-performance applications. 2) Persistence ensures that data is not lost through RDB and AOF, and the choice is based on application needs.

Redis's Server-Side Operations: What It OffersRedis's Server-Side Operations: What It OffersApr 29, 2025 am 12:21 AM

Redis'sServer-SideOperationsofferFunctionsandTriggersforexecutingcomplexoperationsontheserver.1)FunctionsallowcustomoperationsinLua,JavaScript,orRedis'sscriptinglanguage,enhancingscalabilityandmaintenance.2)Triggersenableautomaticfunctionexecutionone

Redis: Database or Server? Demystifying the RoleRedis: Database or Server? Demystifying the RoleApr 28, 2025 am 12:06 AM

Redisisbothadatabaseandaserver.1)Asadatabase,itusesin-memorystorageforfastaccess,idealforreal-timeapplicationsandcaching.2)Asaserver,itsupportspub/submessagingandLuascriptingforreal-timecommunicationandserver-sideoperations.

Redis: The Advantages of a NoSQL ApproachRedis: The Advantages of a NoSQL ApproachApr 27, 2025 am 12:09 AM

Redis is a NoSQL database that provides high performance and flexibility. 1) Store data through key-value pairs, suitable for processing large-scale data and high concurrency. 2) Memory storage and single-threaded models ensure fast read and write and atomicity. 3) Use RDB and AOF mechanisms to persist data, supporting high availability and scale-out.

Redis: Understanding Its Architecture and PurposeRedis: Understanding Its Architecture and PurposeApr 26, 2025 am 12:11 AM

Redis is a memory data structure storage system, mainly used as a database, cache and message broker. Its core features include single-threaded model, I/O multiplexing, persistence mechanism, replication and clustering functions. Redis is commonly used in practical applications for caching, session storage, and message queues. It can significantly improve its performance by selecting the right data structure, using pipelines and transactions, and monitoring and tuning.

Redis vs. SQL Databases: Key DifferencesRedis vs. SQL Databases: Key DifferencesApr 25, 2025 am 12:02 AM

The main difference between Redis and SQL databases is that Redis is an in-memory database, suitable for high performance and flexibility requirements; SQL database is a relational database, suitable for complex queries and data consistency requirements. Specifically, 1) Redis provides high-speed data access and caching services, supports multiple data types, suitable for caching and real-time data processing; 2) SQL database manages data through a table structure, supports complex queries and transaction processing, and is suitable for scenarios such as e-commerce and financial systems that require data consistency.

Redis: How It Acts as a Data Store and ServiceRedis: How It Acts as a Data Store and ServiceApr 24, 2025 am 12:08 AM

Redisactsasbothadatastoreandaservice.1)Asadatastore,itusesin-memorystorageforfastoperations,supportingvariousdatastructureslikekey-valuepairsandsortedsets.2)Asaservice,itprovidesfunctionalitieslikepub/submessagingandLuascriptingforcomplexoperationsan

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

DVWA

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

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.