We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a269e1c + 650a4c8 commit 53ce8e9Copy full SHA for 53ce8e9
docs/database/redis/redis-data-structures-02.md
@@ -123,7 +123,7 @@ HyperLogLog 相关的命令非常少,最常用的也就 3 个。
123
124
### 应用场景
125
126
-**数量量巨大(百万、千万级别以上)的计数场景**
+**数量巨大(百万、千万级别以上)的计数场景**
127
128
- 举例:热门网站每日/每周/每月访问 ip 数统计、热门帖子 uv 统计、
129
- 相关命令:`PFADD`、`PFCOUNT` 。
docs/database/redis/redis-questions-01.md
@@ -729,7 +729,7 @@ Redis 的定期删除过程是随机的(周期性地随机从设置了过期
729
730
Redis 7.2 版本的执行时间阈值是 **25ms**,过期 key 比例设定值是 **10%**。
731
732
-```java
+```c
733
#define ACTIVE_EXPIRE_CYCLE_FAST_DURATION 1000 /* Microseconds. */
734
#define ACTIVE_EXPIRE_CYCLE_SLOW_TIME_PERC 25 /* Max % of CPU to use. */
735
#define ACTIVE_EXPIRE_CYCLE_ACCEPTABLE_STALE 10 /* % of stale keys after which
0 commit comments