在我的服务器端代码 (WCF) 中使用 TransactionScope 类时出现性能问题。
我的代码从客户端获取请求,创建 TransactionScope 并执行短操作(通常长达 100 毫秒)。
请参阅下面模拟我的服务器端代码的附加代码。当有100个或更多并发用户时,需要超过1秒的问题!创建新的 TransactionScope(请参阅 GetTransaction() 方法)。
当并发用户达到 200 个时,会抛出 TransactionAborted 。
你有什么想法?
class Program
{
private static ConcurrentQueue<double> m_Queue = new ConcurrentQueue<double>();
static void Main(string[] args)
{
Console.WriteLine("Press any key to start ...");
Console.ReadKey();
for (int i = 0; i < 100; i++)
{
Thread t = new Thread(new ThreadStart(Method));
t.IsBackground = true;
t.Start();
}
Thread.Sleep(2000);
Console.WriteLine("Max {0}, Min {1}, Avg {2}, Total {3}", m_Queue.Max(), m_Queue.Min(), m_Queue.Average(), m_Queue.Count);
Console.ReadKey();
}
private static void Method()
{
using (TransactionScope scope = GetTransaction())
{
Thread.Sleep(100);
scope.Complete();
}
}
public static TransactionScope GetTransaction()
{
var start = DateTime.Now;
TransactionOptions options = new TransactionOptions();
options.IsolationLevel = IsolationLevel.ReadCommitted;
var t = new TransactionScope(TransactionScopeOption.Required, options);
// Log creation time
m_Queue.Enqueue((DateTime.Now.Subtract(start)).TotalMilliseconds);
return t;
}
}