gpt4 book ai didi

C# 每个 Grpc 一元调用重用或创建新客户端

转载 作者:行者123 更新时间:2023-12-02 05:17:08 24 4
gpt4 key购买 nike

我已阅读该文档,但没有看到当我对 grpc 服务器进行一元调用时,我创建一个新客户端或重用客户端(Channel 显然会再次重用它)的详细信息。如下面的代码所示,使用 SayHello 或 SayHello1。谢谢。

using System;
using Grpc.Core;
using HelloWorld;

namespace GreeterClient
{
class Program
{
static Greeter.GreeterClient client;
static Channel channel;
public static void Main(string[] args)
{
channel = new Channel("127.0.0.1:50051", ChannelCredentials.Insecure);
client = new Greeter.GreeterClient(channel);

while (true)
{
try
{
var name = Console.ReadLine();
var reply = SayHello(name);
Console.WriteLine(reply);
}
catch (RpcException ex)
{
Console.WriteLine(ex.Message);
}
}
channel.ShutdownAsync().Wait();

}
public static string SayHello(string name)
{
var reply = client.SayHello(new HelloRequest { Name = name });
return reply.Message;
}
public static string SayHello1(string name)
{
var newClient = new Greeter.GreeterClient(channel);
var reply = newClient.SayHello(new HelloRequest { Name = name });
return reply.Message;
}
}
}

最佳答案

最常见的是,您可以为您进行的所有调用重用相同的客户端类实例(在您的情况下为“GreeterClient”)。也就是说,创建一个新的“GreeterClient”实例(从预先存在的 channel )是一个非常便宜的操作,因此创建更多客户端类实例(例如,由于代码的逻辑结构)不会造成任何损害。

Channel 类相对来说要重量级得多,只有在有充分理由时才应该创建新的 channel 实例。

关于C# 每个 Grpc 一元调用重用或创建新客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55604605/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com