From 087e3dfb453a8f9da62234cf2969a7958afac54e Mon Sep 17 00:00:00 2001 From: Siddharth Kulkarni Date: Wed, 7 Feb 2024 16:04:02 +0530 Subject: [PATCH] Update redis.md to correct the documentation link to io-redis propoerties Update redis.md to correct the documentation link to io-redis propoerties. Current Link was incorrect. --- www/apps/docs/content/development/cache/modules/redis.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/apps/docs/content/development/cache/modules/redis.md b/www/apps/docs/content/development/cache/modules/redis.md index 6bc2fd93dc391..7b1f33f68981f 100644 --- a/www/apps/docs/content/development/cache/modules/redis.md +++ b/www/apps/docs/content/development/cache/modules/redis.md @@ -74,7 +74,7 @@ You also pass the option `ttl`. This means time-to-live, and it indicates the nu Other available options include: -- `redisOptions`: an object containing options for the Redis instance. You can learn about available options in [io-redis’s documentation](https://luin.github.io/ioredis/index.html#RedisOptions). By default, it’s an empty object. +- `redisOptions`: an object containing options for the Redis instance. You can learn about available options in [io-redis’s documentation](https://redis.github.io/ioredis/classes/Redis.html#options). By default, it’s an empty object. - `namespace`: a string used to prefix event keys. By default, it's `medusa`. ---