From 58e2b2da3732365ec83c22005d051cfb7f30680b Mon Sep 17 00:00:00 2001 From: raviteja83 Date: Thu, 5 Oct 2023 15:09:23 +0530 Subject: [PATCH] fix: links --- docs/javascript/v2/changelog/release-notes.mdx | 2 +- .../{large-rooms-peerlist.mdx => peerlist-optimizations.mdx} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename docs/javascript/v2/how-to-guides/set-up-video-conferencing/{large-rooms-peerlist.mdx => peerlist-optimizations.mdx} (90%) diff --git a/docs/javascript/v2/changelog/release-notes.mdx b/docs/javascript/v2/changelog/release-notes.mdx index 37c6a54dd8..0901a48abf 100644 --- a/docs/javascript/v2/changelog/release-notes.mdx +++ b/docs/javascript/v2/changelog/release-notes.mdx @@ -19,7 +19,7 @@ description: Release Notes for 100ms JavaScript SDK Released: `@100mslive/hms-video-store@0.10.17`, `@100mslive/react-sdk@0.8.17`, `@100mslive/hls-player@0.1.17`, `@100mslive/roomkit-react@0.1.8` ### Added: -- New API for handling peer list in large rooms(>10k peers) +- [New API](/javascript/v2/how-to-guides/set-up-video-conferencing/peerlist-optimizations) for handling peer list in large rooms(>10k peers) - Reduced time taken for updating the hls live status ### Fixed: diff --git a/docs/javascript/v2/how-to-guides/set-up-video-conferencing/large-rooms-peerlist.mdx b/docs/javascript/v2/how-to-guides/set-up-video-conferencing/peerlist-optimizations.mdx similarity index 90% rename from docs/javascript/v2/how-to-guides/set-up-video-conferencing/large-rooms-peerlist.mdx rename to docs/javascript/v2/how-to-guides/set-up-video-conferencing/peerlist-optimizations.mdx index d8ffdc7dc6..fe1491c23d 100644 --- a/docs/javascript/v2/how-to-guides/set-up-video-conferencing/large-rooms-peerlist.mdx +++ b/docs/javascript/v2/how-to-guides/set-up-video-conferencing/peerlist-optimizations.mdx @@ -1,5 +1,5 @@ --- -title: Handling peerlist in large room(10k peers or more) +title: Handling peerlist in large room nav: 1.23 --- @@ -7,7 +7,7 @@ Prerequisites: **Minimum required [SDK version](../../changelog/release-notes#2023-10-04)** -In case of large rooms, it does not make sense to show all the peers at once as the peers of interest would be limited. So we updated our implementation +In case of large rooms(more than 5k peers), it does not make sense to show all the peers at once as the peers of interest would be limited. So we updated our implementation to show peers of interest(peers with publish permissions, peers who handraised) in the initial peer list. However, if you wish to show peers of particular role(s), we introduced new set of API's to achieve this.