acl/lib_acl_cpp/include/acl_cpp/redis/redis_key.hpp
zsxxsz cc05b877a2 first commit acl to github
first commit acl to github
2013-08-18 17:42:25 +08:00

24 lines
513 B
C++

#pragma once
#include <vector>
#include "acl_cpp/stdlib/string.hpp"
namespace acl {
class redis_key
{
public:
redis_key() {}
~redis_key() {}
bool del_keys(const char* first_key, ...);
int get_keys(const char* pattern, std::vector<acl::string>& out);
bool if_exists(const char* key);
redis_key_t get_key_type(const char* key);
bool set_ttl(const char* key, int n);
int get_ttl(const char* key);
bool set_expireat(const char* key, time_t stamp);
bool set_persist(const char*);
};
} // namespace acl