多次调用的wcf初始化策略
当我有很多呼叫时,我有一个关于初始化 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们使用
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.