mirror of
https://github.com/fluencelabs/redis
synced 2025-06-23 05:51:34 +00:00
dict.c API names modified to be more coincise and consistent.
This commit is contained in:
@ -36,7 +36,7 @@ int pubsubSubscribeChannel(redisClient *c, robj *channel) {
|
||||
dictAdd(server.pubsub_channels,channel,clients);
|
||||
incrRefCount(channel);
|
||||
} else {
|
||||
clients = dictGetEntryVal(de);
|
||||
clients = dictGetVal(de);
|
||||
}
|
||||
listAddNodeTail(clients,c);
|
||||
}
|
||||
@ -64,7 +64,7 @@ int pubsubUnsubscribeChannel(redisClient *c, robj *channel, int notify) {
|
||||
/* Remove the client from the channel -> clients list hash table */
|
||||
de = dictFind(server.pubsub_channels,channel);
|
||||
redisAssertWithInfo(c,NULL,de != NULL);
|
||||
clients = dictGetEntryVal(de);
|
||||
clients = dictGetVal(de);
|
||||
ln = listSearchKey(clients,c);
|
||||
redisAssertWithInfo(c,NULL,ln != NULL);
|
||||
listDelNode(clients,ln);
|
||||
@ -146,7 +146,7 @@ int pubsubUnsubscribeAllChannels(redisClient *c, int notify) {
|
||||
int count = 0;
|
||||
|
||||
while((de = dictNext(di)) != NULL) {
|
||||
robj *channel = dictGetEntryKey(de);
|
||||
robj *channel = dictGetKey(de);
|
||||
|
||||
count += pubsubUnsubscribeChannel(c,channel,notify);
|
||||
}
|
||||
@ -180,7 +180,7 @@ int pubsubPublishMessage(robj *channel, robj *message) {
|
||||
/* Send to clients listening for that channel */
|
||||
de = dictFind(server.pubsub_channels,channel);
|
||||
if (de) {
|
||||
list *list = dictGetEntryVal(de);
|
||||
list *list = dictGetVal(de);
|
||||
listNode *ln;
|
||||
listIter li;
|
||||
|
||||
|
Reference in New Issue
Block a user