CoreWCF / CoreWCF/CoreWCF

why corewcf slower than .netframework wcf

Open
#395 12 comments 0 reactions 0 assignees View on GitHub
Dominant language
C#
Stars
1.8k
Forks
320
PR merge metrics
No merged PRs in 30d

Description

basically, .net core webapi 2x faster than .net framework webapi 。
but corewcf slower than .net framework wcf

TestDemo:

[System.ServiceModel.ServiceContract]
[CoreWCF.ServiceContract]
public interface ITest
{
[System.ServiceModel.OperationContract]
[CoreWCF.OperationContract]
string GetTest1();

}

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

public partial class Test : ITest
{
public string GetTest1()
{
return "1234567890";
}
}

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.