安装和启动Redis服务...略!很粗糙的版本,待改进...

Redis Client C++示例代码...略!

/**
 * Time: 14-3-10
 * File: RedisCache.h
 * Author: wbhuang
 * Description: none
 */

#ifndef __REDIS_CACHE_H__
#define __REDIS_CACHE_H__

#include <string>
#include <boost/date_time.hpp>
#include "redisclient.h"

using namespace std;
using namespace boost;

class RedisMediator {
public:

	static const int DEFAULT_EXPIRE_TIME = 0;

	virtual string getKey() = 0;
	virtual string getValue() = 0;
	int getTime() { return 0; }
	bool getIsSetDefaultValue() { return false; }
	string getDefaultValue() { return "none"; }
};

class RedisCache {

private:
	string host, port;
	bool clusterMode;
	shared_ptr<redis::client> client;

public:
	RedisCache();
	virtual ~RedisCache();
	RedisCache(string host, string port);

	string set(string key, string value);
	string get(string key);
	string del(string key);
	string getAndSet(RedisMediator *redisMediator);
	bool   exists(string key);

	vector<string> mGet(vector<string> *keys);
	vector<string> mSet(vector<string> *keys, vector<string> *values);
	vector<string> mGetAndSet(vector<RedisMediator*> *redisMediators);

	string hashSet(string key, string field, string value);
	string hashGet(string key, string field);
	string hashDel(string key, string field);
	string hashGetAndSet(string key, RedisMediator *redisMediator);
	bool hashExists(string key, string field);
	int hashLen(string key);

	string sAdd(string key, string value);
	string sPop(string key);
	string sDel(string key);

	string rPush(string key, string value);
	string lPush(string key, string value);
	int lLen(string key);
	string lIndex(string key, int index);
	string lSet(string key, int index, string value);
	string lPop(string key);
	string rPop(string key);

	void flushAll();
	void flushDb();

protected:

};

#endif /*__REDIS_CACHE_H__*/

  

/**
 * Time: 14-3-1
 * File: RedisCache.cpp
 * Author: wbhuang
 * Description: none
 */

#include "RedisCache.h"

#define VALUE_NULL "**nonexistent-key**" 

RedisCache::RedisCache()
{
	char *charHost= getenv("REDIS_HOST");
	if(charHost) {
    		host = string(charHost);
	} else {
  		host = string("localhost");
	}
	client = shared_ptr<redis::client>( new redis::client(host) );
}

RedisCache::RedisCache(string host, string port):host(host), port(port)
{
	client = shared_ptr<redis::client>( new redis::client(this->host) );
}

RedisCache::~RedisCache()
{

}

string RedisCache::set(string key, string value)
{
	if (key.empty())
		return "";
	client->set(key, value);
	return value;
}

string RedisCache::get(string key)
{
	string value;
	if (key.empty())
		return "";
	if (exists(key))
		value = client->get(key);

	return value;
}

string RedisCache::del(string key)
{
	string value;
	value = get(key);
	client->del(key);
	return value;
}

string RedisCache::getAndSet(RedisMediator *redisMediator)
{
	if (NULL == redisMediator)
		return "";
	string key, value;
	key = redisMediator->getKey();
	value = get(key);

	if (value.empty())
	{
		value = redisMediator->getValue();
		set(key, value);
		int time = redisMediator->getTime();
		if (0 != time)
			client->expire(key, time);
	}
	return value;
}

bool RedisCache::exists(string key)
{
	return client->exists(key);
}

vector<string> RedisCache::mGet(vector<string> *keys)
{
      	redis::client::string_vector vals;
	client->mget(*keys, vals);

	return vals;
}

vector<string> RedisCache::mSet(vector<string> *keys, vector<string> *values)
{
	for (int i = 0; i < keys->size(); i++)
	{
		client->set((*keys)[i], (*values)[i]);
	}

	return *values;
}

vector<string> RedisCache::mGetAndSet(vector<RedisMediator*> *redisMediators)
{
	string key, value;
	vector<string> values;
	for (int i = 0; i < redisMediators->size(); i++)
	{
		key = (*redisMediators)[i]->getKey();
		value = get(key);
		if (value.empty())
		{
			value = (*redisMediators)[i]->getKey();
			set(key, value);
		}
		values.push_back(value);
	}
	return values;
}

string RedisCache::hashSet(string key, string field, string value)
{
	if(key.empty() || field.empty())
		return "";
	client->hset(key, field, value);
	return value;
}

string RedisCache::hashGet(string key, string field)
{
	if (key.empty() || field.empty())
		return "";
	string value;
	if (hashExists(key, field))
		value = client->hget(key, field);

	return value;
}

string RedisCache::hashDel(string key, string field)
{
	string value;
	value = hashGet(key, field);
	client->hdel(key, field);
	return value;
}

string RedisCache::hashGetAndSet(string key, RedisMediator *redisMediator)
{
	if (key.empty() || NULL == redisMediator)
		return "";
	string field, value;
	field = redisMediator->getKey();
	value = hashGet(key, field);
	if (value.empty())
	{
		value = redisMediator->getValue();
		hashSet(key, field, value);
	}
	return value;
}

bool RedisCache::hashExists(string key, string field)
{
	return client->hexists(key, field);
}

int RedisCache::hashLen(string key)
{
	return client->hlen(key);
}

string RedisCache::sAdd(string key, string value)
{
	if (key.empty() || value.empty())
		return "";
	client->sadd(key, value);
	return value;
}

string RedisCache::sPop(string key)
{
	string value;
	value = client->spop(key);
	if (VALUE_NULL == value)
		value = "";
	return value;
}

string RedisCache::sDel(string key)
{
	if (key.empty())
		return "";
	return sPop(key);
}

string RedisCache::rPush(string key, string value)
{
	if (key.empty())
		return "";
	client->rpush(key, value);
	return value;
}

string RedisCache::lPush(string key, string value)
{
	if (key.empty())
		return "";
	client->lpush(key, value);
	return value;
}

int RedisCache::lLen(string key)
{
	if (key.empty())
		return 0;
	return client->llen(key);
}

string RedisCache::lIndex(string key, int index)
{
	if (key.empty() || index < 0 || index >= lLen(key))
		return "";
	string value = client->lindex(key, index);
	if (VALUE_NULL == value)
		value ="";
	return value;
}

string RedisCache::lSet(string key, int index, string value)
{
	if (key.empty() || index < 0 || index >= lLen(key))
		return "";

	client->lset(key, index, value);
	return value;
}

string RedisCache::lPop(string key)
{
	if (key.empty())
		return "";
	string value = client->lpop(key);
	if (VALUE_NULL == value)
		value = "";
	return value;
}

string RedisCache::rPop(string key)
{
	if (key.empty())
		return "";
	string value = client->rpop(key);
	if (VALUE_NULL == value)
		value = "";
	return value;
}

void RedisCache::flushAll()
{
	client->flushall();
}	

void RedisCache::flushDb()
{
	client->flushdb();
}

  

#include "RedisCache.h"

#include  <iostream>

int main()
{
	RedisCache* cache = new RedisCache();
	cache->set("foo", "wbhuang");
	string value = cache->get("foo");
	cout<<"after set foo:"<<value<<endl;
	cache->del("foo");
	value = cache->get("foo");
	cout<<"after del foo:"<<cache->get("foo")<<endl;

	vector<string> vecKey, vecValue;
	vecKey.push_back("foo1");
	vecValue.push_back("val1");
	vecKey.push_back("foo2");
	vecValue.push_back("val2");

	cache->mSet(&vecKey, &vecValue);
	cout<<"after mset foo2:"<<cache->get("foo2")<<endl;
	vector<string> vecRet = cache->mGet(&vecKey);
	cout<<"after mget foo1:"<<vecRet[0]<<endl;

	string hKey = "hfoo";
	string hField = "hfield";
	cache->hashSet(hKey, hField, "wbhuang");
	cout<<"after hset len:"<<cache->hashLen(hKey)<<endl;
	string hValue = cache->hashGet(hKey, hField);
	cache->hashDel(hKey, hField);
	//cache->del(hKey);
	cout<<"after hdel len:"<<cache->hashLen(hKey)
		<<",value"<<cache->hashGet(hKey, hField)<<endl;

	string sKey = "sKey";
	string sValue = "sValue";

	cache->sAdd(sKey, sValue);
	cout<<"after sAdd value:"<<cache->sPop(sKey)<<endl;
	cache->sDel(sKey);
	cout<<"after sDel value:"<<cache->sPop(sKey)<<endl;

	string rKey = "rfoo";
	string rValue = "rValue", lValue = "lValue";
	cache->rPush(rKey, rValue);
	cout<<"test rPush end"<<endl;
	cache->lPush(rKey, lValue);
	cout<<"test lPush end"<<endl;
	string rRet;
	rRet = cache->lIndex(rKey, 1);
	cout<<"test lIndex end rRet:"<<rRet<<endl;
	int llen = cache->lLen(rKey);
	cout<<"test lLen end len:"<<llen<<endl;
	cout<<"test lIndex end 1:"<<rRet<<endl;
	rRet = cache->lPop(rKey);
	cout<<"after lPop ret:"<<rRet<<endl;
	cache->lSet(rKey, 0, "wbh");
	rRet = cache->rPop(rKey);
	cout<<"after lset rPop ret:"<<rRet<<endl;
	rRet = cache->rPop(rKey);
	cout<<"empty stack len:"<<cache->lLen(rKey)<<",ret:"<<cache->rPop(rKey)<<endl;
	cout<<"empty statck 0:"<<cache->lIndex(rKey, 0)<<endl;

	cache->flushDb();
	delete cache;
	return 0;
}

  

最新文章

  1. Java基础知识笔记(一:修饰词、向量、哈希表)
  2. javascript [object,Object]
  3. Unity5 Standard自发光材质无效解决方法
  4. poj 2777 Count Color(线段树 区间更新)
  5. C#进程启动程序,并禁止原窗口操作
  6. Java8 Lambda表达应用 -- 单线程游戏server+异步数据库操作
  7. cpp - 输入输出
  8. Friendly Date Ranges 让日期区间更友好
  9. linux下安装PHP扩展memcache
  10. chmod、acl权限
  11. css3 二维码 添加 扫描特效
  12. H2数据库
  13. java中封装类(一)
  14. AFNetworking 3.0中调用[AFHTTPSessionManager manager]方法导致内存泄漏的解决办法
  15. Linux基础(六) Vim之vundle插件
  16. spark 实现TOP N
  17. java基本例子
  18. 嵌入式开发之zynq——赛灵思的一款两a9加一fpga芯片的开发板
  19. Log4j将不同Package的日志输出到不同的文件的方法
  20. qemu模拟vexpress-a9及u-boot引导 linux

热门文章

  1. [原创][SW]TortoiseSVN创建本地版本控制
  2. 【UTR #2】题目交流通道
  3. Maven创建Web工程并执行构建/测试/打包/部署
  4. bubble chat listview
  5. Android图片缓存之Bitmap详解(一)
  6. 【spring data jpa】使用repository进行查询,使用userRepository.getOne(id)和userRepository.findById(id)无法从数据库查询到数据
  7. 解决mac osx下pip安装ipython权限的问题
  8. visual studio usage tips
  9. yii框架:CDbConnection failed to open the DB connection: could not find driver的解决的方法
  10. 翻翻git之---有用的欢迎页开源库 AppIntro