Skip to content

Commit 5481c76

Browse files
authored
Mention performance when running gRPC on .NET Framework (#35760)
1 parent d789353 commit 5481c76

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

aspnetcore/grpc/netstandard.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ var client = new Greeter.GreeterClient(channel);
8686
var response = await client.SayHelloAsync(new HelloRequest { Name = ".NET" });
8787
```
8888

89+
> [!NOTE]
90+
> The gRPC client on .NET Framework is slower than on modern .NET versions. For improved gRPC performance, apps should be updated to use modern .NET.
91+
8992
## gRPC C# core-library
9093

9194
An alternative option for .NET Framework has been to use [gRPC C# core-library](https://grpc.io/docs/languages/csharp/quickstart/) to make gRPC calls. gRPC C# core-library is:

0 commit comments

Comments
 (0)