Git Product home page Git Product logo

Comments (4)

ForbesLindesay avatar ForbesLindesay commented on June 18, 2024

False positive:

const promiseThatResolvesSlowly = delay(1000);
const promiseThatRejectsQuickly = Promise.reject('oops');

try {
  await promiseThatResolvesSlowly;
  await promiseThatRejectsQuickly;
} catch (ex) {
  // We handle the rejection here, but it was already reported as an
  // unhandled rejection while we were waiting for promiseThatResolvesSlowly
}

The reason it's not recommended in production, is that promise must track all unhandled rejections in case they are later resolved and we need to report them as handled. This has a memory overhead and can cause a memory leak in applications that deliberately ignore some rejected promises.

from promise.

alamothe avatar alamothe commented on June 18, 2024

Thanks for the explanation!

You probably meant for that to run in parallel?

const promiseThatResolvesSlowly = delay(1000);
const promiseThatRejectsQuickly = Promise.reject('oops');

try {
  await Promise.all([
    promiseThatResolvesSlowly, 
    promiseThatRejectsQuickly,
  ]);
} catch (ex) {
  // We handle the rejection here, but it was already reported as an
  // unhandled rejection while we were waiting for promiseThatResolvesSlowly
}

I think I'm starting to understand the problem better now, after a year of React experience πŸ˜„

I'm wondering why the best practices here are not popularized more, instead of just being hinted at in this obscure issue: facebook/react-native#2585

from promise.

alamothe avatar alamothe commented on June 18, 2024

...my bad, your example is correct, mine isn't (Promise.all only waits for first rejection)

from promise.

ForbesLindesay avatar ForbesLindesay commented on June 18, 2024

@alamothe more importantly, Promise.all would mark the rejection as handled whenever it happens. so even if you had multiple rejections, all with different delays, they would all be marked as handled. Only the first would actually be re-thrown into the try/catch block though.

from promise.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.