I'm developing a auction trading system for trading vehicles within the company I work for.
Traders can set alerts and whenever a new listing is submitted I want to use the details of the new listing to search through everybody's alerts for matches, but this shouldn't be time a trader should be waiting to get back confirmation of their successful listing so I want to run it in the background.
My question is, if I mark the function async
and not worry about the return will the ASP.NET MVC framework still want to wait for the asynchronous function to end before ending the request?
I know I probably could test this but I'm not sure how, I haven't got too deep in my async books yet.
Thanks.