Typo in url for thread pool doc page (#12258)

pull/12289/head^2
Muhammad Umair Irshad 2019-05-06 16:30:49 +01:00 committed by Scott Addie
parent 9e0347edbc
commit 85775b2d29
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ A common performance problem in ASP.NET Core apps is blocking calls that could b
* Call data access and long-running operations APIs asynchronously. * Call data access and long-running operations APIs asynchronously.
* Make controller/Razor Page actions asynchronous. The entire call stack is asynchronous in order to benefit from [async/await](/dotnet/csharp/programming-guide/concepts/async/) patterns. * Make controller/Razor Page actions asynchronous. The entire call stack is asynchronous in order to benefit from [async/await](/dotnet/csharp/programming-guide/concepts/async/) patterns.
A profiler, such as [PerfView](https://github.com/Microsoft/perfview), can be used to find threads frequently added to the [Thread Pool](/windows/desktop/procthread/thread-pool). The `Microsoft-Windows-DotNETRuntime/ThreadPoolWorkerThread/Start` event indicates a thread added to the thread pool. <!-- For more information, see [async guidance docs](TBD-Link_To_Davifowl_Doc --> A profiler, such as [PerfView](https://github.com/Microsoft/perfview), can be used to find threads frequently added to the [Thread Pool](/windows/desktop/procthread/thread-pools). The `Microsoft-Windows-DotNETRuntime/ThreadPoolWorkerThread/Start` event indicates a thread added to the thread pool. <!-- For more information, see [async guidance docs](TBD-Link_To_Davifowl_Doc -->
## Minimize large object allocations ## Minimize large object allocations