Use Post or PostAndAsyncReply with F#'s MailboxProcessor?
问题 I've seen different snippets demonstrating a Put message that returns unit with F#'s MailboxProcessor . In some, only the Post method is used while others use PostAndAsyncReply , with the reply channel immediately replying once the message is being processed. In doing some testing, I found a significant time lag when awaiting the reply, so it seems that unless you need a real reply, you should use Post . Note: I started asking this in another thread but thought it useful to post as a full