debing.sun

Results 96 comments of debing.sun

missing `set-listpack` in https://github.com/redis/redis/blob/1de675b3d52a369b88dc7a73f0bc359f7984ca44/src/redis-check-rdb.c#L100

I suspect that the redis that you running is not 6.2.4, can you use `redis-cli info|gre redis_version` to check again?

@geeky-biz ~~The only simplest way I can think of should be to put different types of caches in different dbs,~~ ~~so that you can know the hit ratios of different...

@gkorland Several users have reported that redisjson crashes on m1 docker, this is because redisjson does not provide an ARM image, docker will automatically use `qemu` to run `linux/amd64` images,...

@gkorland It was fixed in https://github.com/redis/redis/pull/6900.

@FZambia Use git bisect to determine and found that this performance degradation is caused by https://github.com/redis/redis/pull/10220

@oranagra @filipecosta90 It seems to be related to the following two commits about `argv` caches being removed. https://github.com/redis/redis/commit/48c49c485155ba9e4a7851fd1644c171674c6f0f https://github.com/redis/redis/commit/4f686555ce962e6632235d824512ea8fdeda003c before #10220 ![image](https://user-images.githubusercontent.com/965798/202443416-c98a8739-2013-4734-8987-9f5480351a36.png) #10220 ![image](https://user-images.githubusercontent.com/965798/202444062-1272ae7d-1fc1-4e3c-83e6-db4cd47c2fd9.png)

@filipecosta90 It's better to change the benchmark command to `redis-benchmark -n 1000000 -P 10 eval 'redis.call("hset", "h1", "k", "v");redis.call("hset", "h2", "k", "v");return redis.call("ping")' 0`. #8474 affacts the `EXPIRE` command, resulting...