The Frank application signature is currently undergoing a change from
'Request -> Async<'Response> to 'Request -> 'Response, where the
'Response includes a Body type that is:
1 2 3 4 5 6 7 8 9 | |
Now to your questions:
Q: Why are you getting rid of the async processing?
A: I’m not. Most requests have already pulled in all the data required for
processing, so wrapping the entire transaction in an Async needlessly is just
waste. The Body of the 'Response can now be either Async or not, which
can further wrap asynchronous access to the 'Request body.