为方便程序对redis操作,我对poco的redis进行了再次封装,主要是针对自己应用需要的部分。

开发工具:netbean

系统环境:centos7

poco版本: poco-1.9.0-all

其实只用了redis中的list

头文件:

#include <Poco/Redis/Exception.h>
#include <Poco/Redis/Client.h>
#include <Poco/Redis/Command.h>
#include <Poco/Redis/Array.h>
#include <iostream>
#include <list>
using std::string;
using std::wstring;

using namespace std;
using Poco::Redis::Client;
using Poco::Redis::Command;
using Poco::Redis::RedisException;
using Poco::Redis::BulkString;
using Poco::Redis::Array;

class PocoRedis {
public:
    PocoRedis();
    PocoRedis(string host,int port);
    PocoRedis(const PocoRedis& orig);
    bool connect();
    
    bool set(string key,string val);
    string get(string key);
    
    //列表操作
    int llen(string key);
    //移出并获取列表的第一个元素
    string lpop(string key);
    //将一个或多个值插入到列表头部
    bool lpush(string key, string value);
    //获取列表指定范围内的元素
    std::list<string> lrange(string key, int start,int end);
    //通过索引获取列表中的元素
    string lindex(string key, int index);
    
    string rpop(string key);
    bool rpush(string key, string value);
    bool lset(string key,int index, string value);
    virtual ~PocoRedis();
private:
    Client* redis;
    string _host;
    int _port;
    
    bool _isConnected;
};

cpp文件

#include <valarray>
#include <list>

#include "PocoRedis.h"

PocoRedis::PocoRedis() {
    this->_host = "127.0.0.1";
    this->_port = 6379;
}

PocoRedis::PocoRedis(string host,int port){
    this->_host = host;
    this->_port = port;
}

bool PocoRedis::connect(){
    this->redis = new Client;
    try
    {
        this->redis->connect(_host,_port);
        this->_isConnected = true;
        std::cout << "connect to [" << _host << ':' << _port << ']' << "success. " << std::endl;
        return true;
    }
    catch (Poco::Exception& e)
    {
        std::cout << "Couldn't connect to [" << _host << ':' << _port << ']' << e.message() << ". " << std::endl;
        this->_isConnected = false;
        return false;
    }    
}

bool PocoRedis::set(string key, string val){
    Command setCommand = Command::set(key, val);
    try
    {
            std::string result = this->redis->execute<std::string>(setCommand);
            return (result.compare("OK") == 0);
    }
    catch (Poco::Exception& e)
    {
        return false;
    }
}

string PocoRedis::get(string key){
    Command getCommand = Command::get(key);
    try
    {
        BulkString result = this->redis->execute<BulkString>(getCommand);
        return result.value();
    }
    catch (RedisException& e)
    {
        return "";
    }
}

bool PocoRedis::lpush(string key, string val){
    Command lpush = Command::lpush(key, val);
    try
    {
        Poco::Int64 result = this->redis->execute<Poco::Int64>(lpush);
        return (result > 1);
    }
    catch (Poco::Exception& e)
    {
        return false;
    }
}

int PocoRedis::llen(string key){
    Command llen = Command::llen("mylist");
    try
    {
            Poco::Int64 n = this->redis->execute<Poco::Int64>(llen);
            return n;
    }    
    catch (Poco::Exception& e)
    {
        return 0;
    }
}

string PocoRedis::lindex(string key, int index){
    Command lindex = Command::lindex(key, index);
    try
    {
            BulkString result = this->redis->execute<BulkString>(lindex);
            return result.value();
    }
    catch (Poco::Exception& e)
    {
        return 0;
    }    
}

std::list<string> PocoRedis::lrange(string key, int start, int end){
    Command lrange = Command::lrange(key,start,end);
    std::list<string> res;    
    try
    {
        Array result = this->redis->execute<Array>(lrange);

for(int i=0;i<result.size();i++){
            res.push_back(result.get<BulkString>(i).value());
        }
        return res;
    }
    catch (Poco::Exception& e)
    {
        return res;
    }    
}

string PocoRedis::lpop(string key){
    Command lpop = Command::lpop(key);
    try
    {
            BulkString result = this->redis->execute<BulkString>(lpop);
            return result.value();
    }
    catch (RedisException& e)
    {
        return "";
    }
}

string PocoRedis::rpop(string key){
    Command lpop = Command::rpop(key);
    try
    {
            BulkString result = this->redis->execute<BulkString>(lpop);
            return result.value();
    }
    catch (RedisException& e)
    {
        return "";
    }
}

bool PocoRedis::rpush(string key, string val){
    Command lpush = Command::rpush(key, val);
    try
    {
        Poco::Int64 result = this->redis->execute<Poco::Int64>(lpush);
        return (result > 1);
    }
    catch (Poco::Exception& e)
    {
        return false;
    }
}

bool PocoRedis::lset(string key,int index, string val){
    Command lset = Command::lset(key,index, val);
    try
    {
        std::string result = this->redis->execute<std::string>(lset);
        return (result.compare("Hello") == 0);
    }
    catch (Poco::Exception& e)
    {
        return false;
    }
}
PocoRedis::PocoRedis(const PocoRedis& orig) {
    
}

PocoRedis::~PocoRedis() {
    if(this->redis!=NULL){
        delete this->redis;
    }
}

调用:

int main_redis2(int argc,char * argv[]){
    PocoRedis pr("127.0.0.1",6379);
    bool connect = pr.connect();
    
    pr.set("age","40");
    pr.lpush("language","jp");
    pr.lpush("language","en");
    
    std::list<string> rss = pr.lrange("language",0,2);
    std::list<string>::iterator si;
    for (si = rss.begin(); si != rss.end(); ++si)   
        cout << *si << endl;
    
    return 0;
}

使用poco再次封装redis的更多相关文章

  1. openresty开发系列27--openresty中封装redis操作

    openresty开发系列27--openresty中封装redis操作 在关于web+lua+openresty开发中,项目中会大量操作redis, 重复创建连接-->数据操作-->关闭 ...

  2. JS弹出框插件zDialog再次封装

    zDialog插件网址:http://www.jq22.com/jquery-info2426 再次封装zDialog的代码: (function ($) { $.extend({ iDialog: ...

  3. easyui的window插件再次封装

    easyui的window插件再次封装 说明:该插件弹出的弹出框在最顶层的页面中,而不是在当前页面所在的iframe中,它的可拖动范围是整个浏览器窗口:所以不能用JS的parent对象获取弹出它的父页 ...

  4. ajax的再次封装!(改进版) —— new与不 new 有啥区别?

    生命不息重构不止! 上一篇写了一下我对ajax的再次封装的方法,收到了很多有价值的回复,比如有童鞋建议用$.extend,一开始还以为要做成插件呢,后来才知道,原来这个东东还可以实现合并.省着自己再去 ...

  5. ajax的再次封装!

    js的动态加载.缓存.更新以及复用 系列有点卡文,放心会继续的.先来点更基础的,为js的加载做点铺垫. jQuery的ajax本来就很方便了,为啥还要在进一步的封装呢?这个首先要看项目的具体需求了,如 ...

  6. javascript笔记——jqGrid再次封装

    xingrunzhao js插件再次封装 demo 'use strict'; /** * commerce grid框架 * 依赖jqgrid */ (function ($_self, jQuer ...

  7. 封装redis

    封装redis import redis # r = redis.Redis() class MyRedis(): def __init__(self,ip,password,port=6379,db ...

  8. Java代码封装redis工具类

    maven依赖关系: <dependency> <groupId>redis.clients</groupId> <artifactId>jedis&l ...

  9. 简单封装Redis做缓存

    基于Redis封装一个简单的Python缓存模块 0. Docker Redis安装 参考: Get Docker CE for CentOS Docker 安装 Redis 安装Docker时错误s ...

随机推荐

  1. os.path.basename()

    返回path最后的文件名.如果path以/或\结尾,那么就会返回空值.即os.path.split(path)的第二个元素. >>> import os >>> p ...

  2. 第四周课堂笔记1th

    函数   关键字def   函数名加括号  是调用函数   Return   相当于给函数算完之后给予另一个返回值   返回的是元组 如果return后没写返回none Return在函数中可以结束整 ...

  3. java_static关键字

    /** * static关键字:静态关键字 * 静态优先于非静态加载到内存中(静态优先于对进入到内存中) * 被static修饰的成员变量不能被序列化的,序列化的都是对象 * transient关键字 ...

  4. C++ 系列:typedef 和 #define 的区别

    总结一下typedef和#define的区别 1.概念 #define 它在编译预处理时进行简单的替换,不作正确性检查.它是预处理指令. typedef 它在自己的作用域内给一个已经存在的类型一个别名 ...

  5. Idea安装Mevn

    1.下载mevn安装包. 下载地址:http://maven.apache.org/ 点击Download 2.下面这两个选哪个都可以,取决于你用什么方式解压 3.把下载好的安装包解压到一个没有中文的 ...

  6. ros python

    https://www.ncnynl.com/archives/201611/1059.html python的节点需要对节点设置权限为可执行,在.py文件所在的路径执行如下命令 $ touch ta ...

  7. BCB如何编写,调用动态链接库DLL

    一 编写动态链接库DLL DLL简称动态链接库,是Windows中程序的重要组成部分.想象一下,一个程序需要多人共同完成开发,怎么个共同法?这时我们就要考虑把程序分为好几个模块,团队每一个成员开发一个 ...

  8. Joomla - 模块系统(新建模块、模块类别、自定义模块)

    Joomla - 模块系统,模块配合模板的布局设置.菜单分配.权限分配能创建出一个内容丰富且易于管理的高度自定义前端页面架构 一.新建模块 进入后台,点击顶栏菜单 扩展管理 -> 模块管理 ,进 ...

  9. python学习笔记4_数据清洗与准备

    一.处理缺失值 pandas使用浮点值NaN(Not a Number)来显示缺失值,并将缺失值称为NA(not available(不可用)). NA常用处理方法: dropna:根据每个标签的值是 ...

  10. 【论文翻译】NIN层论文中英对照翻译--(Network In Network)

    [论文翻译]NIN层论文中英对照翻译--(Network In Network) [开始时间]2018.09.27 [完成时间]2018.10.03 [论文翻译]NIN层论文中英对照翻译--(Netw ...