Statistic Replication Interval
This option is available for Clustered Cache only. Statistics replication interval is the time interval in seconds after which a node sends its statistics to all other nodes in a cluster.
Using NCache Manager
Click on the cache name in Cache Explorer to open cache settings.
Go to the Cluster Settings tab.
Set the Statistic replication interval (sec.) as per your requirement.
- Right click the cache in Cache Explorer and select Apply Configuration option.
Manually Editing NCache Configuration
Important
Make sure the cache is stopped before making any configuration changes.
- Specify statistic replication interval through config.ncconf by specifying the
stats-repl-interval
key in the<cluster-settings>
tag:
<cache-settings ...>
<cache-topology topology="partitioned">
<cluster-settings operation-timeout="60sec" stats-repl-interval="1sec" use-heart-beat="True">
...
</cluster-settings>
</cache-topology>
</cache-settings>
- Once changes are made, start the cache and restart NCache service.