c++里面使用LRANGE创建一个代码
以下是使用LRANGE函数从Redis中获取一个list的示例C++代码:
#include <iostream>
#include <hiredis/hiredis.h>
int main() {
// 建立Redis连接
redisContext *c = redisConnect("127.0.0.1", 6379);
if (c == NULL || c->err) {
std::cout << "Error connecting to Redis: " << c->errstr << std::endl;
return 1;
}
std::cout << "Successfully connected to Redis" << std::endl;
// 从Redis中获取一个list
redisReply *reply = (redisReply*)redisCommand(c, "LRANGE mylist 0 -1");
if (reply == NULL || reply->type == REDIS_REPLY_ERROR) {
std::cout << "Error retrieving list from Redis: " << reply->str << std::endl;
return 1;
}
// 输出list中的元素
if (reply->type == REDIS_REPLY_ARRAY) {
for (int i = 0; i < reply->elements; i++) {
std::cout << reply->element[i]->str << std::endl;
}
}
// 释放内存
freeReplyObject(reply);
redisFree(c);
return 0;
}
此代码使用LRANGE函数从Redis中获取名为“mylist”的list,并遍历其所有元素。请注意,此代码使用 hiredis C库来与Redis进行通信,因此需要将其包含在项目中
原文地址: http://www.cveoy.top/t/topic/eo9y 著作权归作者所有。请勿转载和采集!