Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Client Side it is the <a href="http://msdn.microsoft.com/en-us/library/microsoft.applicationserver.caching.datacachetransportproperties.maxbuffersize.aspx" rel="noreferrer">maxBufferSize</a> on the transport element in your DataCacheClient config section.</p> <pre><code> &lt;transportProperties ..whatever else you have.. maxBufferSize="8388608" /&gt; </code></pre> <p>Edit:</p> <p>Example of the DataCacheClient section from <a href="http://msdn.microsoft.com/en-us/library/ee790816.aspx" rel="noreferrer">MSDN</a></p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;!--configSections must be the FIRST element --&gt; &lt;configSections&gt; &lt;!-- required to read the &lt;dataCacheClient&gt; element --&gt; &lt;section name="dataCacheClient" type="Microsoft.ApplicationServer.Caching.DataCacheClientSection, Microsoft.ApplicationServer.Caching.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" allowLocation="true" allowDefinition="Everywhere"/&gt; &lt;/configSections&gt; &lt;dataCacheClient requestTimeout="15000" channelOpenTimeout="3000" maxConnectionsToServer="1"&gt; &lt;localCache isEnabled="true" sync="TimeoutBased" ttlValue="300" objectCount="10000"/&gt; &lt;clientNotification pollInterval="300" maxQueueLength="10000"/&gt; &lt;hosts&gt; &lt;host name="CacheServer1" cachePort="22233"/&gt; &lt;host name="CacheServer2" cachePort="22233"/&gt; &lt;/hosts&gt; &lt;securityProperties mode="Transport" protectionLevel="EncryptAndSign" /&gt; &lt;transportProperties connectionBufferSize="131072" maxBufferPoolSize="268435456" maxBufferSize="8388608" maxOutputDelay="2" channelInitializationTimeout="60000" receiveTimeout="600000"/&gt; &lt;/dataCacheClient&gt; &lt;/configuration&gt; </code></pre>
    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. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      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