JavaScript-Style Promises in F#
Working in enterprise level back end software often times I need to get information from many different sources. When you have enough of these sources the time it takes to get all the information can really add up. That’s when F# async work flow really comes in handy. Except, there is a gotcha.
Let’s say we have two sources we need to fetch data from:
let myData () = async { let!
[Read More]