This is the complete list of members for fun::Redis, including all inherited members.
Append(const string &key, const string &value, const string &tag="") | fun::Redis | static |
AppendAsync(const string &key, const string &value, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
BitCount(const string &key, size_t *count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
BitCount(const string &key, const int64_t &start, const int64_t &end, size_t *count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
BitCountAsync(const string &key, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
BitCountAsync(const string &key, const int64_t &start, const int64_t &end, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
BitOp(const string &operation, const string &dest_key, const StrList &keys, size_t *dest_key_size, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
BitOpAsync(const string &operation, const string &dest_key, const StrList &keys, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
CommandOption enum name (defined in fun::Redis) | fun::Redis | |
Decr(const string &key, int64_t *decreased, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
DecrAsync(const string &key, const OnIntReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
DecrBy(const string &key, const int64_t &decrement, int64_t *decreased, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
DecrByAsync(const string &key, const int64_t &decrement, const OnIntReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Del(const string &key, size_t *del_count, const string &tag="") | fun::Redis | static |
Del(const StrList &keys, size_t *del_count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
DelAsync(const string &key, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
DelAsync(const StrList &keys, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Discard(const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Exec(const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ExecuteCommand(const string &command_name, const std::vector< string > *arguments, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ExecuteCommandAsync(const string &command_name, const std::vector< string > *arguments, const OnResponseReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Exists(const string &key, bool *exists, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ExistsAsync(const string &key, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Expire(const string &key, const size_t &seconds, bool *is_set, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ExpireAsync(const string &key, const size_t &seconds, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Get(const string &key, string *value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
GetAsync(const string &key, const OnStringReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
GetBit(const string &key, const size_t &offset, bool *bit, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
GetBitAsync(const string &key, const size_t &offset, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
GetRange(const string &key, const int64_t &start, const int64_t &end, string *value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
GetRangeAsync(const string &key, const int64_t &start, const int64_t &end, const OnStringReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
GetSet(const string &key, const string &new_value, string *old_value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
GetSetAsync(const string &key, const string &new_value, const OnStringReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HDel(const string &key, const string &field, size_t *del_count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HDel(const string &key, const StrList &fields, size_t *del_count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HDelAsync(const string &key, const string &field, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HDelAsync(const string &key, const StrList &fields, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HExists(const string &key, const string &field, bool *exists, const string &tag="") | fun::Redis | static |
HExistsAsync(const string &key, const string &field, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HGet(const string &key, const string &field, string *value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HGetAll(const string &key, StrPairList *field_values, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HGetAllAsync(const string &key, const OnStrPairListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HGetAsync(const string &key, const string &field, const OnStringReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HIncrBy(const string &key, const string &field, const int64_t &increment, int64_t *increased, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HIncrByAsync(const string &key, const string &field, const int64_t &increment, const OnIntReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HIncrByFloat(const string &key, const string &field, const double &increment, double *increased, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HIncrByFloatAsync(const string &key, const string &field, const double &increment, const OnDoubleReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HKeys(const string &key, StrList *fields, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HKeysAsync(const string &key, const OnStrListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HLen(const string &key, size_t *field_count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HLenAsync(const string &key, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HMGet(const string &key, const StrList &fields, StrList *values, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HMGetAsync(const string &key, const StrList &fields, const OnStrListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HMSet(const string &key, const StrPairList &field_values, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HMSetAsync(const string &key, const StrPairList &field_values, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HSet(const string &key, const string &field, const string &value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HSetAsync(const string &key, const string &field, const string &value, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HSetNx(const string &key, const string &field, const string &value, bool *already_exists, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HSetNxAsync(const string &key, const string &field, const string &value, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HVals(const string &key, StrList *values, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
HValsAsync(const string &key, const OnStrListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Incr(const string &key, int64_t *increased, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
IncrAsync(const string &key, const OnIntReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
IncrBy(const string &key, const int64_t &increment, int64_t *increased, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
IncrByAsync(const string &key, const int64_t &increment, const OnIntReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
IncrByFloat(const string &key, const double &increment, double *increased, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
IncrByFloatAsync(const string &key, const double &increment, const OnDoubleReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
kEX enum value (defined in fun::Redis) | fun::Redis | |
kNone enum value (defined in fun::Redis) | fun::Redis | |
kNX enum value (defined in fun::Redis) | fun::Redis | |
kPX enum value (defined in fun::Redis) | fun::Redis | |
kResultDisconnected enum value (defined in fun::Redis) | fun::Redis | |
kResultError enum value (defined in fun::Redis) | fun::Redis | |
kResultNil enum value (defined in fun::Redis) | fun::Redis | |
kResultSuccess enum value (defined in fun::Redis) | fun::Redis | |
kXX enum value (defined in fun::Redis) | fun::Redis | |
LIndex(const string &key, const int64_t &index, string *value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LIndexAsync(const string &key, const int64_t &index, const OnStringReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LInsert(const string &key, const bool &before, const string &pivot, const string &value, bool *key_or_pivot_not_found, int64_t *total_length, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LInsertAsync(const string &key, const bool &before, const string &pivot, const string &value, const OnBoolIntReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LLen(const string &key, size_t *length, const string &tag="") | fun::Redis | static |
LLenAsync(const string &key, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LPop(const string &key, string *value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LPopAsync(const string &key, const OnStringReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LPush(const string &key, const string &value, size_t *total_length, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LPush(const string &key, const StrList &values, size_t *total_length, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LPushAsync(const string &key, const string &value, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LPushAsync(const string &key, const StrList &values, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LRange(const string &key, const int64_t &start, const int64_t &stop, StrList *values, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LRangeAsync(const string &key, const int64_t &start, const int64_t &stop, const OnStrListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LRem(const string &key, const int64_t &count, const string &value, size_t *rem_count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LRemAsync(const string &key, const int64_t &count, const string &value, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LSet(const string &key, const int64_t &index, const string &value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LSetAsync(const string &key, const int64_t &index, const string &value, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LTrim(const string &key, const int64_t &start, const int64_t &stop, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
LTrimAsync(const string &key, const int64_t &start, const int64_t &stop, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
MGet(const StrList &keys, StrList *values, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
MGetAsync(const StrList &keys, const OnStrListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
MSet(const StrPairList &key_values, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
MSetAsync(const StrPairList &key_values, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
MSetNx(const StrPairList &key_values, bool *already_exists, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
MSetNxAsync(const StrPairList &key_values, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Multi(const string &tag="") | fun::Redis | static |
OnBoolIntReturned typedef (defined in fun::Redis) | fun::Redis | |
OnBoolReturned typedef (defined in fun::Redis) | fun::Redis | |
OnDoubleReturned typedef (defined in fun::Redis) | fun::Redis | |
OnIntReturned typedef (defined in fun::Redis) | fun::Redis | |
OnMultipleDoubleReturned typedef (defined in fun::Redis) | fun::Redis | |
OnNonReturned typedef | fun::Redis | |
OnPSubCallback typedef (defined in fun::Redis) | fun::Redis | |
OnResponseReturned typedef | fun::Redis | |
OnSentinelMasterSwitched typedef | fun::Redis | |
OnSizeReturned typedef (defined in fun::Redis) | fun::Redis | |
OnStrDoublePairListReturned typedef (defined in fun::Redis) | fun::Redis | |
OnStringReturned typedef (defined in fun::Redis) | fun::Redis | |
OnStrListReturned typedef (defined in fun::Redis) | fun::Redis | |
OnStrPairListReturned typedef (defined in fun::Redis) | fun::Redis | |
OnSubCallback typedef | fun::Redis | |
Persist(const string &key, bool *is_removed, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PersistAsync(const string &key, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PExpire(const string &key, const size_t &milliseconds, bool *is_set, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PExpireAsync(const string &key, const size_t &milliseconds, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PSetEx(const string &key, const int64_t &milliseconds, const string &value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PSetExAsync(const string &key, const int64_t &milliseconds, const string &value, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PSubscribeAsync(const string &pattern, const OnPSubCallback &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PSubscribeAsync(const StrList &patterns, const OnPSubCallback &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PTTL(const string &key, int64_t *remaining_ttl, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PTTLAsync(const string &key, const OnIntReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Publish(const string &channel, const string &message, size_t *received_client_count, const string &tag="") | fun::Redis | static |
PublishAsync(const string &channel, const string &message, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PUnsubscribe(const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PUnsubscribe(const string &pattern, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PUnsubscribe(const StrList &patterns, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PUnsubscribeAsync(const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PUnsubscribeAsync(const string &pattern, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
PUnsubscribeAsync(const StrList &patterns, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Rename(const string &key, const string &new_key, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
RenameAsync(const string &key, const string &new_key, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Result enum name (defined in fun::Redis) | fun::Redis | |
RPop(const string &key, string *value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
RPopAsync(const string &key, const OnStringReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
RPush(const string &key, const string &value, size_t *total_length, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
RPush(const string &key, const StrList &values, size_t *total_length, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
RPushAsync(const string &key, const string &value, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
RPushAsync(const string &key, const StrList &values, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SAdd(const string &key, const string &member, size_t *add_count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SAdd(const string &key, const StrList &members, size_t *add_count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SAddAsync(const string &key, const string &member, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SAddAsync(const string &key, const StrList &members, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Scan(const string &cursor, const string &pattern, StrList *values, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ScanAsync(const string &cursor, const string &pattern, const OnStrListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SCard(const string &key, size_t *cardinality, const string &tag="") | fun::Redis | static |
SCardAsync(const string &key, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SDiff(const StrList &keys, StrList *members, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SDiffAsync(const StrList &keys, const OnStrListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SDiffStore(const string &destination, const StrList &keys, size_t *destination_size, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SDiffStoreAsync(const string &destination, const StrList &keys, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Set(const string &key, const string &value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Set(const string &key, const string &value, const CommandOption ex_or_px, const size_t time, const CommandOption nx_or_xx, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SetAsync(const string &key, const string &value, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SetAsync(const string &key, const string &value, const CommandOption ex_or_px, const size_t time, const CommandOption nx_or_xx, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SetBit(const string &key, const size_t &offset, const bool &new_value, bool *old_value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SetBitAsync(const string &key, const size_t &offset, const bool &new_value, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SetEx(const string &key, const int64_t &seconds, const string &value, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SetExAsync(const string &key, const int64_t &seconds, const string &value, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SetNx(const string &key, const string &value, bool *already_exists, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SetNxAsync(const string &key, const string &value, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SInter(const StrList &keys, StrList *members, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SInterAsync(const StrList &keys, const OnStrListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SInterStore(const string &destination, const StrList &keys, size_t *destination_size, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SInterStoreAsync(const string &destination, const StrList &keys, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SIsMember(const string &key, const string &member, bool *is_member, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SIsMemberAsync(const string &key, const string &member, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SMembers(const string &key, StrList *members, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SMembersAsync(const string &key, const OnStrListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SMove(const string &source, const string &destination, const string &member, bool *is_moved, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SMoveAsync(const string &source, const string &destination, const string &member, const OnBoolReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SPop(const string &key, string *member, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SPopAsync(const string &key, const OnStringReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SRandMember(const string &key, string *member, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SRandMember(const string &key, const int64_t &count, StrList *members, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SRandMemberAsync(const string &key, const OnStringReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SRandMemberAsync(const string &key, const int64_t &count, const OnStrListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SRem(const string &key, const string &member, size_t *rem_count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SRem(const string &key, const StrList &members, size_t *rem_count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SRemAsync(const string &key, const string &member, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SRemAsync(const string &key, const StrList &members, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
StrDoublePair typedef (defined in fun::Redis) | fun::Redis | |
StrDoublePairList typedef (defined in fun::Redis) | fun::Redis | |
StrLen(const string &key, size_t *length, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
StrLenAsync(const string &key, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
StrList typedef (defined in fun::Redis) | fun::Redis | |
StrPair typedef (defined in fun::Redis) | fun::Redis | |
StrPairList typedef (defined in fun::Redis) | fun::Redis | |
SubscribeAsync(const string &channel, const OnSubCallback &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SubscribeAsync(const StrList &channels, const OnSubCallback &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SubscribeSentinelSwitchMasterChannelAsync(const OnSentinelMasterSwitched &cb, const string &tag="") | fun::Redis | static |
SUnion(const StrList &keys, StrList *members, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SUnionAsync(const StrList &keys, const OnStrListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SUnionStore(const string &destination, const StrList &keys, size_t *destination_size, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
SUnionStoreAsync(const string &destination, const StrList &keys, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
TTL(const string &key, int64_t *remaining_ttl, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
TTLAsync(const string &key, const OnIntReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Unsubscribe(const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Unsubscribe(const string &channel, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
Unsubscribe(const StrList &channels, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
UnsubscribeAsync(const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
UnsubscribeAsync(const string &channel, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
UnsubscribeAsync(const StrList &channels, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZAdd(const string &key, const double &score, const string &member, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZAddAsync(const string &key, const double &score, const string &member, const OnNonReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZCard(const string &key, size_t *cardinality, const string &tag="") | fun::Redis | static |
ZCardAsync(const string &key, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZCount(const string &key, const string &min, const string &max, size_t *count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZCountAsync(const string &key, const string &min, const string &max, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZIncrBy(const string &key, const double &increment, const string &member, double *new_score, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZIncrByAsync(const string &key, const double &increment, const string &member, const OnDoubleReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZRem(const string &key, const string &member, size_t *del_count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZRem(const string &key, const StrList &members, size_t *del_count, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZRemAsync(const string &key, const string &member, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZRemAsync(const string &key, const StrList &members, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZRevRange(const string &key, const int64_t &start, const int64_t &stop, const bool &withscores, StrDoublePairList *member_scores, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZRevRangeAsync(const string &key, const int64_t &start, const int64_t &stop, const bool &withscores, const OnStrDoublePairListReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZRevRank(const string &key, const string &member, size_t *rank, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZRevRankAsync(const string &key, const string &member, const OnSizeReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZScore(const string &key, const string &member, double *score, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZScoreAsync(const string &key, const string &member, const OnDoubleReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |
ZScoreExtAsync(const string &key, const StrList &members, const OnMultipleDoubleReturned &callback, const string &tag="") (defined in fun::Redis) | fun::Redis | static |