5

正如标题所说,我得到了一个定义了此服务行为的 WCF 服务器:

[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple)]

我使用命名管道绑定,我的客户以这种方式连接:

    NetNamedPipeBinding binding = new NetNamedPipeBinding();
const int maxValue = 0x40000000; // 1GB
binding.MaxBufferSize = maxValue; 
binding.MaxReceivedMessageSize = maxValue;

binding.ReaderQuotas.MaxArrayLength = maxValue;
binding.ReaderQuotas.MaxBytesPerRead = maxValue;
binding.ReaderQuotas.MaxStringContentLength = maxValue;

// receive timeout acts like a general timeout
binding.ReceiveTimeout = TimeSpan.MaxValue;
binding.SendTimeout = TimeSpan.MaxValue;

ChannelFactory<IDatabaseSession> pipeFactory = new ChannelFactory<IDatabaseSession>(binding, new EndpointAddress("net.pipe://localhost/DatabaseService"));

IDatabaseSession dbSession = pipeFactory.CreateChannel()

我启动的每个客户端都执行上面的代码,每个客户端的 CPU 使用率都会增加 25%(实际上不是针对 5. 客户端,但此时可执行的服务几乎覆盖了整个 CPU 容量的 100%)。

我正在寻找的是一种资源(网站/列表或只是您的强大知识)告诉我 CreateChannel 实际做了什么(关于资源分配问题)。

提示:即使没有实际进行通信,CPU 使用率也会增加,只是创建了 Channel。

4

2 回答 2

3

暂停调试器并查看所有线程停止的位置。这可能是您的代码的热门部分。查看调用堆栈。

于 2012-04-24T19:40:57.137 回答
1

WCF 本身不太可能使用那么多资源,尤其是因为您说即使没有通信也会发生这种情况。我的猜测是这是服务的问题,而不是客户的问题。如果您有服务构造函数,请查看它。还可以尝试不同的InstanceContextMode和值ConcurrencyMode

于 2012-04-25T12:20:23.947 回答