Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 112467
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:32:57+00:00 2026-05-11T02:32:57+00:00

Lets say I wanted to scrape a webpage, and extract some data. I’d most

  • 0

Lets say I wanted to scrape a webpage, and extract some data. I’d most likely write something like this:

let getAllHyperlinks(url:string) =     async {  let req = WebRequest.Create(url)              let! rsp = req.GetResponseAsync()              use stream = rsp.GetResponseStream()             // depends on rsp              use reader = new System.IO.StreamReader(stream)  // depends on stream              let! data = reader.AsyncReadToEnd()              // depends on reader              return extractAllUrls(data) }                    // depends on data 

The let! tells F# to execute the code in another thread, then bind the result to a variable, and continue processing. The sample above uses two let statements: one to get the response, and one to read all the data, so it spawns at least two threads (please correct me if I’m wrong).

Although the workflow above spawns several threads, the order of execution is serial because each item in the workflow depends on the previous item. Its not really possible to evaluate any items further down the workflow until the other threads return.

Is there any benefit to having more than one let! in the code above?

If not, how would this code need to change to take advantage of multiple let! statements?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T02:32:58+00:00Added an answer on May 11, 2026 at 2:32 am

    The key is we are not spawning any new threads. During the whole course of the workflow, there are 1 or 0 active threads being consumed from the ThreadPool. (An exception, up until the first ‘!’, the code runs on the user thread that did an Async.Run.) ‘let!’ lets go of a thread while the Async operation is at sea, and then picks up a thread from the ThreadPool when the operation returns. The (performance) advantage is less pressure against the ThreadPool (and of course the major user advantage is the simple programming model – a million times better than all that BeginFoo/EndFoo/callback stuff you otherwise write).

    See also http://cs.hubfs.net/forums/thread/8262.aspx

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

does PHP support something like ampersand in bash (forking)? Let's say I wanted to
Lets say I have a loop in Bash: for foo in `some-command` do do-something
I don't think this is possible but I wanted to make sure. Lets say
so lets say I wanted to essentially do this: $.post( 'search_item.php', { serialzed_data, save:
I wanted to know something which is very disturbing for me. i.e. Lets say
Lets say I retrieve an entity object that looks like this: @Entity public class
Lets say i wanted to add another variable to the database can anybody tell
Lets say i wanted to compare a variable in the sqlite database and if
Lets say I have this code: <?php class hello { var $greeting = hello;
Lets say I have the following data: <XmlDataProvider x:Key=Values> <x:XData> <folder name=C:> <folder name=stuff

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.