Created
April 3, 2018 12:34
-
-
Save indongyoo/ae734653e57bde93a1e316feeb99f6b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 동시에 users와 posts 출발 | |
const res1 = awiat concurrency({ | |
users: _=> query(...), | |
posts: _=> query(...) | |
}); | |
//{ | |
// users: [row, row, row, ...] | |
// posts: [row, row, row, ...] | |
//} | |
// await를 만날 때마다 하나씩 출발 | |
const res2 = { | |
users: await query(...), | |
posts: await query(...) | |
} | |
//{ | |
// users: [row, row, row, ...] | |
// posts: [row, row, row, ...] | |
//} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment