我有数据库连接列表,其中只有一个有效。 我的应用程序应该连接到它们并尝试根据输入userId获取用户信息。
private string GetDatabaseId(string userId)
{
string dbId = string.Empty;
Parallel.ForEach(dictionaryAllDatabases, (db, state) =>
{
user = GetUserFromDatabase(db.Key, userId);
if (user != null)
{
//we found user in database.set the db.Id and exit the loop
//it takes only 500 milliseconds to hit this line
dbId = db.Key;
state.Stop();
return;
}
}
);
//after about 15 seconds, we reach here
.....
}
它找到有效数据库所需的时间不到500毫秒,然后我调用state.Stop()来退出循环。但退出循环大约需要15秒。
我做错了吗?
感谢
如果我使用Parallel.For
,我得到了相同的结果答案 0 :(得分:2)
您可能正在等待其他任务的连接失败。
尝试setting the connection timeout说2秒。
停止不会强制停止其他任务,它只是阻止新任务启动。 Parallel.ForEach决定如何在任务之间对工作进行分区。
更好的选择是将Connection.OpenAsync
与取消令牌一起使用并使用Task.WaitAny()
。