chore: disable redis client-side caching by default (#19524)

This commit is contained in:
Bowen Liang
2025-05-12 21:42:07 +08:00
committed by GitHub
parent ab82e21f4d
commit 0e21ed0194
+1 -1
View File
@@ -91,5 +91,5 @@ class RedisConfig(BaseSettings):
REDIS_ENABLE_CLIENT_SIDE_CACHE: bool = Field(
description="Enable client side cache in redis",
default=True,
default=False,
)