Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Utilize Promise.all for Efficient Asynchronous Operations 馃殌 #11912

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

sanjaiyan-dev
Copy link

What does this PR do?

This pull request refactors the code to leverage Promise.all for running multiple asynchronous functions concurrently. By utilizing Promise.all, we achieve improved performance and readability when dealing with asynchronous operations.

Benefits of Promise.all:

  • Improved Performance: Promise.all allows all the asynchronous functions to execute concurrently, potentially leading to significant performance gains, especially when dealing with independent tasks.
  • Simplified Code: By using Promise.all, we can group multiple asynchronous operations into a single line, making the code more concise and easier to maintain.
  • Documentation or TypeScript types (it's okay to leave the rest blank in this case)
  • Code changes

How did you verify your code works?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant