多次调用的wcf初始化策略

发布于 2024-12-26 07:19:10 字数 176 浏览 1 评论 0原文

当我有很多呼叫时,我有一个关于初始化 wcf 服务客户端代理的问题。 假设我有一个进程,每 5 秒连接一次服务器,我不想每 5 秒实例化一次服务客户端代理,所以我第一次初始化它并使用相同的实例所有调用。 可以吗,我在这里错过了什么吗,wcf 服务是否每 5 秒打开和关闭一次连接,尽管它是同一个实例。

提前致谢 ...

I have a question about initializing the wcf service client proxy when I have many calls .
Lets say I have a process , which connect the server each 5 sec, I don't want to instantiate the service client proxy each 5 sec, so I initialized it the first time and use the same instance all the calls .
Is that OK , do I miss something here , does the wcf service open and close the connection each 5 sec although its the same instance .

Thanks in advance ...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神妖 2025-01-02 07:19:11

我们使用 ChannelFactory因此,每次我们需要代理时,我们只需要求 Channel 工厂提供代理即可。因此,通道工厂有责任从其内部缓存为您提供代理或创建新代理。

BNL 提供的链接是一个很好的资源,并讨论它如何帮助实现性能。
另请查看此链接,了解如何使用 ChannelFactory 的示例。

We use ChannelFactory<T> So every time we need a proxy we just ask Channel factory to provide a proxy. So it is Channel Factory's responsibility to give you proxy from its internal cache or to create new one.

Link provided by BNL is a good resource and discuss how it helps to achieve the performance.
Also check this link for example how to use ChannelFactory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文