Posts

Showing posts with the label WCF - Throttling and Pooling

WCF - Throttling and Pooling

Through the management of a service instance can define what form of creating an instance to serve a given request. This setting we make the level of service through a  behavior  , imposes no restriction on the amount of instance and / or concurrent executions are carried out, depending on the volume of requests that the service has or even the amount of resources it uses, can significantly degrade performance. 's  Throttling  allows restricting the amount of sessions, concurrent instances and calls that are made ​​to a service. Besides  Throttling  , there is another feature that can be used in a service, which is the  pooling  of objects, very common within the  Enterprise Services (COM +)  . This article will explain how to proceed to make configuration of  Throttling  and its implications;supercialmente also talk about the structure of the  Pooling  and how to implement it.  Throttling ...