mirror of
https://github.com/fluencelabs/redis
synced 2025-04-04 00:31:03 +00:00
fixed for HT resize check 32bits overflow
This commit is contained in:
parent
5a7c647e9a
commit
dec423d9cf
4
redis.c
4
redis.c
@ -27,7 +27,7 @@
|
|||||||
* POSSIBILITY OF SUCH DAMAGE.
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define REDIS_VERSION "0.091"
|
#define REDIS_VERSION "0.100"
|
||||||
|
|
||||||
#include "fmacros.h"
|
#include "fmacros.h"
|
||||||
|
|
||||||
@ -664,7 +664,7 @@ int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) {
|
|||||||
/* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL
|
/* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL
|
||||||
* we resize the hash table to save memory */
|
* we resize the hash table to save memory */
|
||||||
for (j = 0; j < server.dbnum; j++) {
|
for (j = 0; j < server.dbnum; j++) {
|
||||||
int size, used, vkeys;
|
long long size, used, vkeys;
|
||||||
|
|
||||||
size = dictSlots(server.db[j].dict);
|
size = dictSlots(server.db[j].dict);
|
||||||
used = dictSize(server.db[j].dict);
|
used = dictSize(server.db[j].dict);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user