Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 0 additions & 98 deletions .github/workflows/issue-processing-ai-triage-nonblazor.yml

This file was deleted.

3 changes: 2 additions & 1 deletion aspnetcore/fundamentals/servers/httpsys.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
---
title: HTTP.sys web server implementation in ASP.NET Core
ai-usage: ai-assisted
author: tdykstra
description: Learn about HTTP.sys, a web server for ASP.NET Core on Windows. Built on the HTTP.sys kernel-mode driver, HTTP.sys is an alternative to Kestrel that can be used for direct connection to the Internet without IIS.
monikerRange: '>= aspnetcore-2.1'
ms.author: tdykstra
ms.custom: mvc
ms.date: 08/04/2025
ms.date: 01/29/2026
uid: fundamentals/servers/httpsys
---
# HTTP.sys web server implementation in ASP.NET Core
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The following code example shows a simple background service that uses the built

:::code language="csharp" source="~/fundamentals/servers/snippets/10.x/my-background-service.cs":::

To use a custom memory pool factory, make a class that implements `IMemoryPoolFactory` and register it with dependency injection, as the following example does. Memory pools created this way also benefit from the automatic eviction feature:
To use a custom memory pool factory, make a class that implements `IMemoryPoolFactory` and register it with dependency injection, as the following example does. Memory pools created this way do not benefit from the automatic eviction feature unless you implement similar eviction logic in your custom factory:

:::code language="csharp" source="~/fundamentals/servers/snippets/10.x/memory-pool-factory.cs":::

Expand Down
5 changes: 3 additions & 2 deletions aspnetcore/fundamentals/servers/kestrel/memory-management.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
---
title: Memory management in Kestrel
ai-usage: ai-assisted
author: tdykstra
description: Learn about memory management in Kestrel, including automatic eviction from memory pools and using memory pool metrics.
monikerRange: '>= aspnetcore-10.0'
ms.author: tdykstra
ms.date: 12/04/2025
ms.date: 01/29/2026
uid: fundamentals/servers/kestrel/memory-management
---

Expand Down Expand Up @@ -34,7 +35,7 @@ The following code example shows a simple background service that uses the built

:::code language="csharp" source="~/fundamentals/servers/snippets/10.x/my-background-service.cs":::

To use a custom memory pool factory, make a class that implements `IMemoryPoolFactory` and register it with dependency injection, as the following example does. Memory pools created this way also benefit from the automatic eviction feature:
To use a custom memory pool factory, make a class that implements `IMemoryPoolFactory` and register it with dependency injection, as the following example does. Memory pools created this way do not benefit from the automatic eviction feature unless you implement similar eviction logic in your custom factory:

:::code language="csharp" source="~/fundamentals/servers/snippets/10.x/memory-pool-factory.cs":::

Expand Down
3 changes: 2 additions & 1 deletion aspnetcore/release-notes/aspnetcore-10.0.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
---
title: What's new in ASP.NET Core in .NET 10
ai-usage: ai-assisted
author: wadepickett
description: Learn about the new features in ASP.NET Core in .NET 10.
ms.author: wpickett
ms.custom: mvc
ms.date: 11/11/2025
ms.date: 01/29/2026
uid: aspnetcore-10
---
# What's new in ASP.NET Core in .NET 10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class MyBackgroundService : BackgroundService
}
```

To use your own memory pool factory, make a class that implements `IMemoryPoolFactory` and register it with dependency injection, as the following example does. Memory pools created this way also benefit from the automatic eviction feature:
To use your own memory pool factory, make a class that implements `IMemoryPoolFactory` and register it with dependency injection, as the following example does. Memory pools created this way do not benefit from the automatic eviction feature unless you implement similar eviction logic in your custom factory:

```csharp
services.AddSingleton<IMemoryPoolFactory<byte>,
Expand Down
Loading