最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

mongodb .net driver - Use single IClientSessionHandle instance with multiple tasks executing in parallel - Stack Overflow

programmeradmin1浏览0评论

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))
     );
}

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论