admin管理员组文章数量:1344107
Do not make instance data thread safe by default, it's a thing we know, but do you know, or have you tried, if a single instance of IClientSessionHandle
can be used in tasks executing in parallel?
There is a 3rd party library that exposes the method, which updates a single record in the collection called Customers
:
Task UpdateCustomer(IClientSessionHande handle, CustomerUpdate customer);
Can this UpdateCustomer
method be used with multiple tasks executing in parallel?
Task UpdateMultipleCustomers(IClientSessionHande handle, IEnumrable<CustomerUpdate> customers)
{
return Task.WhenAll(customers
.Select(customer => UpdateCustomer(handle, customer))
);
}
本文标签:
版权声明:本文标题:mongodb .net driver - Use single IClientSessionHandle instance with multiple tasks executing in parallel - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743745013a2531594.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论