I have WCF service in a managed Window service. There can be several service request through asp.net web page at a time (say 100 requests) to access this service. I am applying lock in the wcf service as i was facing some other issue. Since i am applying lock the request is getting timed out when i load test it. Is it possible to run 10 parallel task and as each tasks get completed new tasks should be created and executed for the remaining 90 tasks. i am trying to optimize my memory and also that way i need not increase the timeouts for my WCF
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Instead of a lock, you could use a semaphore with a maximum count of 10 http://msdn.microsoft.com/en-us/library/system.threading.semaphore.aspx |
|||||||||
|
|
Yes, this is definitely possible. See this MSDN document on setting up continuations: http://msdn.microsoft.com/en-us/library/dd537612(VS.110).aspx (I am assuming by "Task" you are referring to the Task object in the Task Parallelism Library) |
|||
|
|
I am applying lock in the wcf service as i was facing some other issue. So dont do it! :)) You know the problem is the locks. Applying locks at such a high level as the WCF service is suicide. Explain the problem you are facing and people can help here. – Aliostad Jan 24 '12 at 14:42