Click here to Skip to main content
15,889,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am using SharePoint server object model with C# and having problems creating multi-threaded application using sharepoint server object model.

I have two types of jobs, first job type involve reading data in SharePoint document library and second type involve writing data to document library.

When i process multiple data reading jobs in multiple threads all goes fine. But when i process multiple data writing jobs in multiple threads then application freezes after some time.

I know all instance methods in SharePoint server object model are not thread safe. But multi threading seems to work fine with data reading jobs, it only causes issues when data writing jobs are involved. I have checked the threads and they freeze on object model API calls.

Is there any safe way to implement multi threaded application using sharepoint server object model.
Posted
Updated 2-Jan-17 15:13pm
v2

1 solution

Just a thought, SharePoint locks the Table during DB Write, so you may want to implement a Semaphore or Mutex at the point where you are writing data to the Document Library.

I am about to create my own MT SharePoint solution, and that is how I am designing mine.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900