Skip to content

Commit 943c4df

Browse files
authored
Remove TBD placeholder comment in best-practices.md (#36550)
1 parent 8213fad commit 943c4df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

aspnetcore/fundamentals/best-practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: mjrousos
44
description: Tips for maximizing performance and reliability in ASP.NET Core apps.
55
monikerRange: '>= aspnetcore-2.1'
66
ms.author: tdykstra
7-
ms.date: 12/20/2022
7+
ms.date: 12/29/2025
88
uid: fundamentals/best-practices
99
---
1010
# ASP.NET Core Best Practices
@@ -39,7 +39,7 @@ A common performance problem in ASP.NET Core apps is blocking calls that could b
3939
* **Do** 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.
4040
* **Consider** using message brokers like [Azure Service Bus](/azure/service-bus-messaging/service-bus-messaging-overview) to offload long-running calls
4141

42-
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) -->
42+
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.
4343

4444
## Return large collections across multiple smaller pages
4545

0 commit comments

Comments
 (0)