Note that there are some explanatory texts on larger screens.

plurals
  1. POHow can I improve performance from my service configuration?
    primarykey
    data
    text
    <p>I'm in a situation where I have Alot of services that are going to get called frequently in a large silverlight app. After some very light testing we are finding that things are just slowing to a crawly right off. I suspect its from the services becaues its a lot of data from a lot of calls.</p> <p>I want to reduce the number of calls but short of completely redesigning from the ground up this is currently only going to be partially possible. </p> <p>All of my services are set to use PerCall in their service behavior and here is my config</p> <pre><code> &lt;services&gt; &lt;service name="MyServices.Service"&gt; &lt;endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" contract="MyServices.Interface.Service" /&gt; &lt;/service&gt; &lt;/services&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="LargeBuffer" closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" &gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="None" /&gt; &lt;/security&gt; &lt;readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; </code></pre> <p>Alot of these services don't need a large buffer binding, could that be affecting my performance?</p> <p>Edit</p> <p>The calls themselves are running efficiently but as soon as we get to a few hundred requests things come to a crawl</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload