Typo in url for thread pool doc page (#12258)
parent
9e0347edbc
commit
85775b2d29
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue