]> git.saurik.com Git - redis.git/commit
Blocking POP: use a dictionary to store keys clinet side.
authorantirez <antirez@gmail.com>
Sun, 2 Dec 2012 19:36:18 +0000 (20:36 +0100)
committerantirez <antirez@gmail.com>
Sun, 2 Dec 2012 19:36:18 +0000 (20:36 +0100)
commit54b08c86a6de7f3b6d464675cd9eb17a69ea9b61
tree0548d36f5d2e89f8131fb27f8937745bcdf41344
parent6bdcd50b56ba295808729e198bd3b3e5284aba42
Blocking POP: use a dictionary to store keys clinet side.

To store the keys we block for during a blocking pop operation, in the
case the client is blocked for more data to arrive, we used a simple
linear array of redis objects, in the blockingState structure:

    robj **keys;
    int count;

However in order to fix issue #801 we also use a dictionary in order to
avoid to end in the blocked clients queue for the same key multiple
times with the same client.

The dictionary was only temporary, just to avoid duplicates, but since
we create / destroy it there is no point in doing this duplicated work,
so this commit simply use a dictionary as the main structure to store
the keys we are blocked for. So instead of the previous fields we now
just have:

    dict *keys;

This simplifies the code and reduces the work done by the server during
a blocking POP operation.
src/networking.c
src/redis.h
src/t_list.c