iFun Engine API  1.0.0-b6053
Great Technology for Great Games
fun::Redis Member List

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