摘要: 对 libmemcached进行二次封装,主要是利用其存储 vector<T>。下面有待改善和完善,先记着,下次更新。 1 #include <iostream> 2 #include <string> 3 #include <libmemcached/memcached.h> 4 #include <vector> 5 6 using namespace std; 7 8 class MemcachedHelper 9 {10 time_t expiration;11 uint32_t flags;12 memcached_st * 阅读全文
posted @ 2012-04-26 18:20 轻典 阅读(663) 评论(0) 推荐(0) 编辑