diff --git a/src/utils/redis.ts b/src/utils/redis.ts index 035ede0..d794d50 100644 --- a/src/utils/redis.ts +++ b/src/utils/redis.ts @@ -386,7 +386,7 @@ async function setupCacheClientTracking(client: RedisClientType, if (!client || !cacheClient.isReady) return; - await client.sendCommand(["CLIENT", "TRACKING", "ON", "REDIRECT", cacheConnectionClientId]); + await client.sendCommand(["CLIENT", "TRACKING", "ON", "REDIRECT", cacheConnectionClientId, "BCAST"]); } export default exportClient;