使用poco再次封装redis
为方便程序对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的更多相关文章
- openresty开发系列27--openresty中封装redis操作
openresty开发系列27--openresty中封装redis操作 在关于web+lua+openresty开发中,项目中会大量操作redis, 重复创建连接-->数据操作-->关闭 ...
- JS弹出框插件zDialog再次封装
zDialog插件网址:http://www.jq22.com/jquery-info2426 再次封装zDialog的代码: (function ($) { $.extend({ iDialog: ...
- easyui的window插件再次封装
easyui的window插件再次封装 说明:该插件弹出的弹出框在最顶层的页面中,而不是在当前页面所在的iframe中,它的可拖动范围是整个浏览器窗口:所以不能用JS的parent对象获取弹出它的父页 ...
- ajax的再次封装!(改进版) —— new与不 new 有啥区别?
生命不息重构不止! 上一篇写了一下我对ajax的再次封装的方法,收到了很多有价值的回复,比如有童鞋建议用$.extend,一开始还以为要做成插件呢,后来才知道,原来这个东东还可以实现合并.省着自己再去 ...
- ajax的再次封装!
js的动态加载.缓存.更新以及复用 系列有点卡文,放心会继续的.先来点更基础的,为js的加载做点铺垫. jQuery的ajax本来就很方便了,为啥还要在进一步的封装呢?这个首先要看项目的具体需求了,如 ...
- javascript笔记——jqGrid再次封装
xingrunzhao js插件再次封装 demo 'use strict'; /** * commerce grid框架 * 依赖jqgrid */ (function ($_self, jQuer ...
- 封装redis
封装redis import redis # r = redis.Redis() class MyRedis(): def __init__(self,ip,password,port=6379,db ...
- Java代码封装redis工具类
maven依赖关系: <dependency> <groupId>redis.clients</groupId> <artifactId>jedis&l ...
- 简单封装Redis做缓存
基于Redis封装一个简单的Python缓存模块 0. Docker Redis安装 参考: Get Docker CE for CentOS Docker 安装 Redis 安装Docker时错误s ...
随机推荐
- http://edu.manew.com/ ,蛮牛教育(很少免费),主要是unty3D和大数据方向。适合扫盲
http://edu.manew.com/ ,蛮牛教育(很少免费),主要是unty3D和大数据方向.
- day20_函数的闭包 与 装饰器
#!/usr/bin/env python # -*- coding:utf-8 -*- # # 一些文章 # https://www.cnblogs.com/Vae1242/p/6944338.ht ...
- Mysql优化系列之查询性能优化前篇3(必须知道的几个事实)
事实一:临时表没有任何索引 最常见的临时表莫过于在from子句中写子查询,遇到这种情况,Mysql会先将其查询结果放到一张临时表中, 然后将这个临时表当做普通表对待 事实二:执行计划优化 大多数的sq ...
- sparkStreaming入门
1.环境 jdk : 1.8 scala : 2.11.7 hadoop:2.7 spark : 2.2.0 2. 开发工具 idea 2017.2 3.maven的pom文件 <depende ...
- SQL中的左连接与右连接,内连接有什么不同
SQL中的左连接与右连接,内连接有什么不同 我们来举个例子.天庭上面有一个管理系统:管理系统有个主表:主表记录着各个神仙的基本信息(我们把它当成表A).还有个表记录着他们这个神仙的详细信息(我们把它当 ...
- [转].NET4.0新特性集合贴
vs2010正式版4月12日发布了,前几天我也下了一个,但这几天都没有时间好好试用一下,今天针对C#语言的新特性使用了一下,感觉还不错,有几个新特性和大家分享一下,希望我没有太火星…… 一.新关键词— ...
- Java事件监听机制与观察者设计模式
一. Java事件监听机制 1. 事件监听三要素: 事件源,事件对象,事件监听器 2. 三要素之间的关系:事件源注册事件监听器后,当事件源上发生某个动作时,事件源就会调用事件监听的一个方法,并将事件对 ...
- hdu 5382
\(F(n)=\sum_{i=1}^n\sum_{j=1}^n[lcm(i,j)+gcd(i,j)\geq n]\) \(S(n)=\sum_{i=1}^nF(i)\) \(F(n)=n^2-\sum ...
- l洛谷 NOIP提高组模拟赛 Day2
传送门 ## T1 区间修改+单点查询.差分树状数组. #include<iostream> #include<cstdio> #include<cstring> ...
- 使用 SourceTree 操作时弹出 password required
通过 https 的方式克隆仓库的,SourceTree 推送等操作的时候会弹出提示要求输入密码. 在仓库里面设置: 远程仓库-选中仓库-点击编辑-修改 url 路径, 路径格式,以码云为例: htt ...