Difference between map and each on Promise bluebirdBluebird Promise serial iteration, and resolve to modified array?Is there a way to use Bluebird's Promise.each concurrently?Difference between == and === in JavaScriptWhat's the difference between using “let” and “var”?What is the difference between call and apply?For-each over an array in JavaScript?Differences between lodash and underscoreWhat is the difference between Bower and npm?How do I convert an existing callback API to promises?How do I access previous promise results in a .then() chain?What is the difference between Promises and Observables?Difference between `return await promise` and `return promise`
How to help my 2.5-year-old daughter take her medicine when she refuses to?
Do any aircraft carry boats?
Renewed US Passport, Did Not Receive Expired US Passport
Contract Employer Keeps Asking for Small Things Without Pay
My favorite color is blue what is your favorite color?
Can I say "I have encrypted something" if I hash something?
Is it appropriate for a professor to require students to sign a non-disclosure agreement before being taught?
Gas pipes - why does gas burn "outwards?"
Why didn't Thor use the All powerful spear instead of Stormbreaker?
Have there been any countries that voted themselves out of existence?
Where does the expression "triple-A" comes from?
Random point on a sphere
Are Co2 tire cartridges reusable for multiple tires?
Dividing Divisive Divisors
How can a resurrection system prevent the cheapening of death?
Are there any instances of members of different Hogwarts houses coupling up and marrying each other?
What does "synoptic" mean in avionics?
How do email clients "send later" without storing a password?
Writing a worded mathematical expression
How could a imperial dynasty keep a loose collection of pirates, raiders, etc unified?
Kingdom Map and Travel Pace
Is BitLocker useful in the case of stolen laptop?
Why does F + F' = 1?
Does the wording of the Wrathful Smite spell imply that there are other living beings that aren't considered "creatures"?
Difference between map and each on Promise bluebird
Bluebird Promise serial iteration, and resolve to modified array?Is there a way to use Bluebird's Promise.each concurrently?Difference between == and === in JavaScriptWhat's the difference between using “let” and “var”?What is the difference between call and apply?For-each over an array in JavaScript?Differences between lodash and underscoreWhat is the difference between Bower and npm?How do I convert an existing callback API to promises?How do I access previous promise results in a .then() chain?What is the difference between Promises and Observables?Difference between `return await promise` and `return promise`
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
What would be the difference between doing these two things:
Promise.map(myValues, async myValue =>
const owner = await findOwner(myValue);
return Promise.all([sendMessage(owner), sendMessageSpecific(owner)]);
)
and
Promise.each(myValues, async myValue =>
const owner = await findOwner(myValue);
sendMessage(owner)
sendMessageSpecific(owner)
)
I know both each and map return a Promise, but I can't figure out what would be the difference from a running perspective. It looks like with each there is no chance for concurrency, one promise happens after the other one, but I'm missing any other big differences between these two code snippets?
javascript promise async-await bluebird
add a comment |
What would be the difference between doing these two things:
Promise.map(myValues, async myValue =>
const owner = await findOwner(myValue);
return Promise.all([sendMessage(owner), sendMessageSpecific(owner)]);
)
and
Promise.each(myValues, async myValue =>
const owner = await findOwner(myValue);
sendMessage(owner)
sendMessageSpecific(owner)
)
I know both each and map return a Promise, but I can't figure out what would be the difference from a running perspective. It looks like with each there is no chance for concurrency, one promise happens after the other one, but I'm missing any other big differences between these two code snippets?
javascript promise async-await bluebird
one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, witheachIf all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps
– Jaromanda X
Mar 28 at 8:45
Omitting thePromise.allcall fromsendMessage(owner)andsendMessageSpecific(owner)in the second snippet just makes it not work. This has nothing to do witheachvsmapthough.
– Bergi
Mar 28 at 9:53
related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572
– Bergi
Mar 28 at 10:00
add a comment |
What would be the difference between doing these two things:
Promise.map(myValues, async myValue =>
const owner = await findOwner(myValue);
return Promise.all([sendMessage(owner), sendMessageSpecific(owner)]);
)
and
Promise.each(myValues, async myValue =>
const owner = await findOwner(myValue);
sendMessage(owner)
sendMessageSpecific(owner)
)
I know both each and map return a Promise, but I can't figure out what would be the difference from a running perspective. It looks like with each there is no chance for concurrency, one promise happens after the other one, but I'm missing any other big differences between these two code snippets?
javascript promise async-await bluebird
What would be the difference between doing these two things:
Promise.map(myValues, async myValue =>
const owner = await findOwner(myValue);
return Promise.all([sendMessage(owner), sendMessageSpecific(owner)]);
)
and
Promise.each(myValues, async myValue =>
const owner = await findOwner(myValue);
sendMessage(owner)
sendMessageSpecific(owner)
)
I know both each and map return a Promise, but I can't figure out what would be the difference from a running perspective. It looks like with each there is no chance for concurrency, one promise happens after the other one, but I'm missing any other big differences between these two code snippets?
javascript promise async-await bluebird
javascript promise async-await bluebird
asked Mar 28 at 8:43
Hommer SmithHommer Smith
9,88641 gold badges123 silver badges218 bronze badges
9,88641 gold badges123 silver badges218 bronze badges
one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, witheachIf all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps
– Jaromanda X
Mar 28 at 8:45
Omitting thePromise.allcall fromsendMessage(owner)andsendMessageSpecific(owner)in the second snippet just makes it not work. This has nothing to do witheachvsmapthough.
– Bergi
Mar 28 at 9:53
related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572
– Bergi
Mar 28 at 10:00
add a comment |
one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, witheachIf all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps
– Jaromanda X
Mar 28 at 8:45
Omitting thePromise.allcall fromsendMessage(owner)andsendMessageSpecific(owner)in the second snippet just makes it not work. This has nothing to do witheachvsmapthough.
– Bergi
Mar 28 at 9:53
related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572
– Bergi
Mar 28 at 10:00
one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, with
each If all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps– Jaromanda X
Mar 28 at 8:45
one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, with
each If all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps– Jaromanda X
Mar 28 at 8:45
Omitting the
Promise.all call from sendMessage(owner) and sendMessageSpecific(owner) in the second snippet just makes it not work. This has nothing to do with each vs map though.– Bergi
Mar 28 at 9:53
Omitting the
Promise.all call from sendMessage(owner) and sendMessageSpecific(owner) in the second snippet just makes it not work. This has nothing to do with each vs map though.– Bergi
Mar 28 at 9:53
related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572
– Bergi
Mar 28 at 10:00
related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572
– Bergi
Mar 28 at 10:00
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55393287%2fdifference-between-map-and-each-on-promise-bluebird%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55393287%2fdifference-between-map-and-each-on-promise-bluebird%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, with
eachIf all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps– Jaromanda X
Mar 28 at 8:45
Omitting the
Promise.allcall fromsendMessage(owner)andsendMessageSpecific(owner)in the second snippet just makes it not work. This has nothing to do witheachvsmapthough.– Bergi
Mar 28 at 9:53
related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572
– Bergi
Mar 28 at 10:00