Appropriate values ​​for AppFabric DataCacheFactory configuration parameters?

In conversations with the AppFabric team with MS support, I was told that the maximum size of the test data object to paste into AppFabric caching is 5 MB per insert.

Based on this base number, can someone recommend initial values ​​for the rest of the DataCacheFactory configuration parameters that have numeric and temporary type values?

The ones I think of are spread across various subclasses used in setting up the DataCacheFactory :

  • ChannelOpenTimeout
  • MaxConnectionsToServer
  • NotificationsPollInterval
  • NotificationsMaxQueueLength
  • RequestTimeout
  • TransportChannelInitializationTimeout
  • TransportConnectionBufferSize
  • TransportMaxBufferPoolSize
  • TransportMaxBufferSize
  • TransportMaxOutputDelay
  • TransportReceiveTimeout
+4
source share
1 answer

This is a good place to configure AppFabric

http://msdn.microsoft.com/en-us/library/ee790927.aspx

There is also this high level configuration overview:

http://msdn.microsoft.com/en-us/library/ee677351.aspx

In addition, these configuration values ​​must have default values. Perhaps try using them by monitoring performance and adjusting them accordingly. Ultimately, even if you configure each of them yourself, you still need to track and reconfigure depending on your application.

Hope that helps

+1
source

All Articles